Skip to content

Commit

Permalink
Upgrade the Ubuntu-based runner used in CI to 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
ericcornelissen committed Sep 25, 2024
1 parent be37f4d commit 0086726
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions: read-all
jobs:
vulnerabilities:
name: Vulnerabilities
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all
jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/[email protected]
Expand All @@ -29,7 +29,7 @@ jobs:
run: go run tasks.go build
dogfeed:
name: Dogfeed
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- test
steps:
Expand All @@ -54,7 +54,7 @@ jobs:
go run ./cmd/ghasum verify
format:
name: Format
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -75,7 +75,7 @@ jobs:
run: go run tasks.go format-check
reproducible:
name: Reproducible build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -96,7 +96,7 @@ jobs:
run: go run tasks.go reproducible
test:
name: Test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -117,7 +117,7 @@ jobs:
run: go run tasks.go coverage
vet:
name: Vet
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all
jobs:
go:
name: Go
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
security-events: write # To upload CodeQL results
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ghasum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
update:
name: Update gha.sum
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
contents: write # To push a commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
github-release:
name: GitHub Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write # To create a GitHub Release
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
semgrep:
name: Semgrep
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
security-events: write # To upload SARIF results
container:
Expand Down

0 comments on commit 0086726

Please sign in to comment.