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

GitHub Actions: bump runners ubuntu version to latest available #4618

Merged
merged 1 commit into from
Feb 14, 2025
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/assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# to "emulated" arm64 side on the amd64 runner.
#
# The trick we play is that we keep it as a matrix job still, but we make
# it use the same GitHub provided x86 ubuntu-20.04 runners. The runner that
# it use the same GitHub provided x86 ubuntu-24.04 runners. The runner that
# gets to unpack arm64 artifacts does so with the help of binfmt-support and
# qemu-user-static

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
echo "release_id=$release_id" >> "$GITHUB_OUTPUT"
echo "upload_url=$upload_url" >> "$GITHUB_OUTPUT"
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs: create_release
strategy:
fail-fast: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [buildjet-4vcpu-ubuntu-2204-arm, buildjet-4vcpu-ubuntu-2004]
os: [buildjet-4vcpu-ubuntu-2204-arm, buildjet-4vcpu-ubuntu-2204]
arch: [arm64, amd64]
platform: [generic, nvidia-jp5, nvidia-jp6]
include:
- os: buildjet-4vcpu-ubuntu-2004
- os: buildjet-4vcpu-ubuntu-2204
arch: riscv64
platform: generic
exclude:
- os: buildjet-4vcpu-ubuntu-2204-arm
arch: amd64
- os: buildjet-4vcpu-ubuntu-2004
- os: buildjet-4vcpu-ubuntu-2204
arch: arm64
- arch: amd64
platform: nvidia-jp5
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

eve:
needs: packages # all packages for all platforms must be built first
runs-on: buildjet-4vcpu-ubuntu-2004
runs-on: buildjet-4vcpu-ubuntu-2204
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/buildondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
include:
- os: buildjet-4vcpu-ubuntu-2204-arm
arch: arm64
- os: buildjet-4vcpu-ubuntu-2004
- os: buildjet-4vcpu-ubuntu-2204
arch: amd64
- os: buildjet-4vcpu-ubuntu-2004
- os: buildjet-4vcpu-ubuntu-2204
arch: riscv64
steps:
- name: Starting Report
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
needs: packages # all packages for all platforms must be built first
# Only run for the default branch
if: github.ref_name == github.event.repository.default_branch
runs-on: buildjet-4vcpu-ubuntu-2004
runs-on: buildjet-4vcpu-ubuntu-2204
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-docker-hashes-consistency.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on: # yamllint disable-line rule:truthy

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on: # yamllint disable-line rule:truthy

jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
include:
- os: arm64-secure
arch: arm64
- os: ubuntu-20.04
- os: ubuntu-22.04
arch: amd64
- os: ubuntu-latest
arch: riscv64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yetus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on: # yamllint disable-line rule:truthy

jobs:
yetus:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down