53
53
54
54
ensure_cargo_fmt :
55
55
name : Ensure 'cargo fmt' has been run
56
- runs-on : ubuntu-20.04
56
+ runs-on : ubuntu-latest
57
57
steps :
58
58
- uses : dtolnay/rust-toolchain@stable
59
59
with :
63
63
64
64
min_version :
65
65
name : Minimum supported rust version
66
- runs-on : ubuntu-20.04
66
+ runs-on : ubuntu-latest
67
67
needs : crate_metadata
68
68
steps :
69
69
- name : Checkout source code
81
81
82
82
license_checks :
83
83
name : License checks
84
- runs-on : ubuntu-20.04
84
+ runs-on : ubuntu-latest
85
85
steps :
86
86
- uses : actions/checkout@v4
87
87
with :
90
90
91
91
test_with_new_syntaxes_and_themes :
92
92
name : Run tests with updated syntaxes and themes
93
- runs-on : ubuntu-20.04
93
+ runs-on : ubuntu-latest
94
94
steps :
95
95
- name : Git checkout
96
96
uses : actions/checkout@v4
@@ -119,7 +119,7 @@ jobs:
119
119
120
120
test_with_system_config :
121
121
name : Run tests with system wide configuration
122
- runs-on : ubuntu-20.04
122
+ runs-on : ubuntu-latest
123
123
steps :
124
124
- name : Git checkout
125
125
uses : actions/checkout@v4
@@ -135,7 +135,7 @@ jobs:
135
135
136
136
documentation :
137
137
name : Documentation
138
- runs-on : ubuntu-20.04
138
+ runs-on : ubuntu-latest
139
139
steps :
140
140
- name : Git checkout
141
141
uses : actions/checkout@v4
@@ -164,18 +164,18 @@ jobs:
164
164
fail-fast : false
165
165
matrix :
166
166
job :
167
- - { target: aarch64-unknown-linux-musl , os: ubuntu-20.04 , dpkg_arch: arm64, use-cross: true }
168
- - { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , dpkg_arch: arm64, use-cross: true }
169
- - { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , dpkg_arch: armhf, use-cross: true }
170
- - { target: arm-unknown-linux-musleabihf, os: ubuntu-20.04 , dpkg_arch: musl-linux-armhf, use-cross: true }
167
+ - { target: aarch64-unknown-linux-musl , os: ubuntu-latest , dpkg_arch: arm64, use-cross: true }
168
+ - { target: aarch64-unknown-linux-gnu , os: ubuntu-latest , dpkg_arch: arm64, use-cross: true }
169
+ - { target: arm-unknown-linux-gnueabihf , os: ubuntu-latest , dpkg_arch: armhf, use-cross: true }
170
+ - { target: arm-unknown-linux-musleabihf, os: ubuntu-latest , dpkg_arch: musl-linux-armhf, use-cross: true }
171
171
- { target: i686-pc-windows-msvc , os: windows-2019, }
172
- - { target: i686-unknown-linux-gnu , os: ubuntu-20.04 , dpkg_arch: i686, use-cross: true }
173
- - { target: i686-unknown-linux-musl , os: ubuntu-20.04 , dpkg_arch: musl-linux-i686, use-cross: true }
172
+ - { target: i686-unknown-linux-gnu , os: ubuntu-latest , dpkg_arch: i686, use-cross: true }
173
+ - { target: i686-unknown-linux-musl , os: ubuntu-latest , dpkg_arch: musl-linux-i686, use-cross: true }
174
174
- { target: x86_64-apple-darwin , os: macos-13, }
175
175
- { target: aarch64-apple-darwin , os: macos-14, }
176
176
- { target: x86_64-pc-windows-msvc , os: windows-2019, }
177
- - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 , dpkg_arch: amd64, use-cross: true }
178
- - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04 , dpkg_arch: musl-linux-amd64, use-cross: true }
177
+ - { target: x86_64-unknown-linux-gnu , os: ubuntu-latest , dpkg_arch: amd64, use-cross: true }
178
+ - { target: x86_64-unknown-linux-musl , os: ubuntu-latest , dpkg_arch: musl-linux-amd64, use-cross: true }
179
179
env :
180
180
BUILD_CMD : cargo
181
181
steps :
0 commit comments