Skip to content

Commit 835c615

Browse files
committed
fix(ci): switch to using ubuntu-latest instead of ubuntu-20.04
Signed-off-by: azjezz <[email protected]>
1 parent a4b5e9a commit 835c615

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/cd.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
min_version:
4141
name: Minimum supported rust version
42-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-latest
4343
needs: crate_metadata
4444
steps:
4545
- name: Checkout source code
@@ -69,25 +69,25 @@ jobs:
6969
- { target: aarch64-apple-darwin, os: macos-15, test: true }
7070
- { target: x86_64-apple-darwin, os: macos-15, test: true }
7171
# FreeBSD
72-
- { target: i686-unknown-freebsd, os: ubuntu-20.04 }
73-
- { target: x86_64-unknown-freebsd, os: ubuntu-20.04 }
72+
- { target: i686-unknown-freebsd, os: ubuntu-latest }
73+
- { target: x86_64-unknown-freebsd, os: ubuntu-latest }
7474
# Linux
75-
- { target: aarch64-unknown-linux-gnu, os: ubuntu-20.04, test: true }
76-
- { target: arm-unknown-linux-gnueabi, os: ubuntu-20.04 }
77-
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-20.04 }
78-
- { target: armv7-unknown-linux-gnueabihf, os: ubuntu-20.04 }
79-
- { target: aarch64-unknown-linux-musl, os: ubuntu-20.04, test: true }
80-
- { target: arm-unknown-linux-musleabi, os: ubuntu-20.04 }
81-
- { target: arm-unknown-linux-musleabihf, os: ubuntu-20.04 }
82-
- { target: armv7-unknown-linux-musleabihf, os: ubuntu-20.04 }
83-
- { target: i686-unknown-linux-gnu, os: ubuntu-20.04, test: true }
84-
- { target: i686-unknown-linux-musl, os: ubuntu-20.04, test: true }
85-
- { target: powerpc-unknown-linux-gnu, os: ubuntu-20.04 }
86-
- { target: powerpc64-unknown-linux-gnu, os: ubuntu-20.04 }
87-
- { target: powerpc64le-unknown-linux-gnu, os: ubuntu-20.04 }
88-
- { target: s390x-unknown-linux-gnu, os: ubuntu-20.04 }
89-
- { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, test: true }
90-
- { target: x86_64-unknown-linux-musl, os: ubuntu-20.04, test: true }
75+
- { target: aarch64-unknown-linux-gnu, os: ubuntu-latest, test: true }
76+
- { target: arm-unknown-linux-gnueabi, os: ubuntu-latest }
77+
- { target: arm-unknown-linux-gnueabihf, os: ubuntu-latest }
78+
- { target: armv7-unknown-linux-gnueabihf, os: ubuntu-latest }
79+
- { target: aarch64-unknown-linux-musl, os: ubuntu-latest, test: true }
80+
- { target: arm-unknown-linux-musleabi, os: ubuntu-latest }
81+
- { target: arm-unknown-linux-musleabihf, os: ubuntu-latest }
82+
- { target: armv7-unknown-linux-musleabihf, os: ubuntu-latest }
83+
- { target: i686-unknown-linux-gnu, os: ubuntu-latest, test: true }
84+
- { target: i686-unknown-linux-musl, os: ubuntu-latest, test: true }
85+
- { target: powerpc-unknown-linux-gnu, os: ubuntu-latest }
86+
- { target: powerpc64-unknown-linux-gnu, os: ubuntu-latest }
87+
- { target: powerpc64le-unknown-linux-gnu, os: ubuntu-latest }
88+
- { target: s390x-unknown-linux-gnu, os: ubuntu-latest }
89+
- { target: x86_64-unknown-linux-gnu, os: ubuntu-latest, test: true }
90+
- { target: x86_64-unknown-linux-musl, os: ubuntu-latest, test: true }
9191

9292
env:
9393
BUILD_CMD: cargo

0 commit comments

Comments
 (0)