Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade the Ubuntu-based runner used in CI to 24.04 #246

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading