From d0fca2cebfdb53ca1ba7a89b9404edcce832f8fb Mon Sep 17 00:00:00 2001 From: PMRMan Date: Fri, 29 Nov 2024 11:17:12 +0000 Subject: [PATCH] locked github runner version to ubuntu-22.04 --- .github/workflows/main.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb6ce0f8..faf42adf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Check out code into the Go module directory uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2e6deae7..9ab93a26 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Check out code into the Go module directory uses: actions/checkout@v2 @@ -28,7 +28,7 @@ jobs: run: go test -p 1 -cover -race -v ./... release: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [ test ] steps: - name: Checkout