Skip to content

Commit 0d4e01d

Browse files
committed
ci: bump GitHub action runner
1 parent 1df1069 commit 0d4e01d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: sudo rm -rf $CARGO_HOME/registry/index
4545

4646
macos-aarch64:
47-
runs-on: macos-14
47+
runs-on: macos-latest
4848
env:
4949
TARGET: aarch64-apple-darwin
5050
steps:
@@ -73,7 +73,7 @@ jobs:
7373
# Use cross for QEMU-based testing
7474
# cross needs to execute Docker, GitHub Action already has it installed
7575
cross:
76-
runs-on: ubuntu-20.04
76+
runs-on: ubuntu-latest
7777
needs: [rustfmt, minver, macos, linux_native_builds, rust_stable]
7878
strategy:
7979
fail-fast: false
@@ -129,7 +129,7 @@ jobs:
129129
# Tasks for Linux native builds
130130
# Only test x86_64 targets on GitHub Action, leave aarch64 one in Cirrus CI.
131131
linux_native_builds:
132-
runs-on: ubuntu-20.04
132+
runs-on: ubuntu-latest
133133
strategy:
134134
fail-fast: false
135135
matrix:
@@ -165,7 +165,7 @@ jobs:
165165
run: sudo rm -rf $CARGO_HOME/registry/index;
166166

167167
rust_stable:
168-
runs-on: ubuntu-20.04
168+
runs-on: ubuntu-latest
169169
env:
170170
TARGET: x86_64-unknown-linux-gnu
171171
steps:
@@ -194,7 +194,7 @@ jobs:
194194

195195
# Tasks for cross-compiling, but no testing
196196
cross_compiling:
197-
runs-on: ubuntu-20.04
197+
runs-on: ubuntu-latest
198198
needs: [rustfmt, minver, macos, linux_native_builds, rust_stable]
199199
env:
200200
BUILD: check
@@ -249,7 +249,7 @@ jobs:
249249

250250

251251
redox:
252-
runs-on: ubuntu-20.04
252+
runs-on: ubuntu-latest
253253
needs: [rustfmt, minver, macos, linux_native_builds, rust_stable]
254254
env:
255255
TARGET: x86_64-unknown-redox
@@ -282,7 +282,7 @@ jobs:
282282

283283
# Rust Tier 3 targets can't use Rustup
284284
tier3:
285-
runs-on: ubuntu-20.04
285+
runs-on: ubuntu-latest
286286
env:
287287
BUILD: check
288288
ZFLAGS: -Zbuild-std
@@ -328,7 +328,7 @@ jobs:
328328
# "cargo test" doesn't work because some of our dev-dependencies, like
329329
# rand, can't build with their own minimal dependencies.
330330
minver:
331-
runs-on: ubuntu-20.04
331+
runs-on: ubuntu-latest
332332
env:
333333
TARGET: x86_64-unknown-linux-gnu
334334
steps:
@@ -349,7 +349,7 @@ jobs:
349349

350350
# Tasks that checks if the code is formatted right using `cargo fmt` tool
351351
rustfmt:
352-
runs-on: ubuntu-20.04
352+
runs-on: ubuntu-latest
353353
steps:
354354
- name: Checkout
355355
uses: actions/checkout@v4

0 commit comments

Comments
 (0)