Skip to content

Commit

Permalink
locked github runner version to ubuntu-22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
PMRMan committed Nov 29, 2024
1 parent 52b181a commit d0fca2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit d0fca2c

Please sign in to comment.