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
Signed-off-by: Eric Cornelissen <[email protected]>
  • Loading branch information
ericcornelissen committed Sep 25, 2024
1 parent a04df5b commit f6e5914
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions: read-all
jobs:
capabilities:
name: Capabilities
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
Expand All @@ -30,7 +30,7 @@ jobs:
run: go run tasks.go audit-capabilities
vulnerabilities:
name: Vulnerabilities
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
Expand Down
26 changes: 13 additions & 13 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/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
Expand All @@ -24,7 +24,7 @@ jobs:
run: go run tasks.go build-all
compliance:
name: Compliance
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -38,7 +38,7 @@ jobs:
run: go run tasks.go compliance
container:
name: Container
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand All @@ -64,7 +64,7 @@ jobs:
CONTAINER_ENGINE: ${{ matrix.engine }}
development-image:
name: Development image
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
Expand All @@ -76,7 +76,7 @@ jobs:
run: go run tasks.go dev-img
format:
name: Format
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -90,7 +90,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 @@ -104,7 +104,7 @@ jobs:
run: go run tasks.go reproducible
reproducible-container:
name: Reproducible container
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- container
- reproducible
Expand All @@ -119,7 +119,7 @@ jobs:
run: go run tasks.go reproducible-container
reproducible-web:
name: Reproducible web
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- web
steps:
Expand All @@ -133,7 +133,7 @@ jobs:
run: go run tasks.go web-reproducible
test-unit:
name: Unit test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -147,7 +147,7 @@ jobs:
run: go run tasks.go test-randomized
test-dogfeed:
name: Dogfeed
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- test-unit
steps:
Expand All @@ -161,7 +161,7 @@ jobs:
run: go run tasks.go dogfeed
test-mutation:
name: Mutation test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- test-unit
steps:
Expand All @@ -175,7 +175,7 @@ jobs:
run: go run tasks.go test-mutation
vet:
name: Vet
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs:
- build
steps:
Expand All @@ -189,7 +189,7 @@ jobs:
run: go run tasks.go vet
web:
name: Web
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
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
docker-hub:
name: Docker Hub
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
id-token: write # To perform keyless signing with cosign
environment:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
"docker.io/ericornelissen/ades@${DIGEST}"
github-release:
name: GitHub Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
attestations: write # To create GitHub Attestations
contents: write # To create a GitHub Release
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
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: read-all
jobs:
publish:
name: Publish
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
Expand Down

0 comments on commit f6e5914

Please sign in to comment.