Skip to content

Commit f39acd1

Browse files
committed
Update rust toolchain for CI
1 parent 87606de commit f39acd1

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

.github/workflows/android.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222

2323
- name: Setup
2424
run: |
25-
rustup toolchain install nightly-2024-05-18-x86_64-unknown-linux-gnu
26-
rustup component add rust-src --toolchain nightly-2024-05-18-x86_64-unknown-linux-gnu
25+
rustup toolchain install nightly-2025-04-15-x86_64-unknown-linux-gnu
26+
rustup component add rust-src --toolchain nightly-2025-04-15-x86_64-unknown-linux-gnu
2727
rustup target add \
2828
aarch64-linux-android \
2929
armv7-linux-androideabi \

.github/workflows/ios.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414

1515
- name: Setup
1616
run: |
17-
rustup toolchain install nightly-2024-05-18-aarch64-apple-darwin
18-
rustup component add rust-src --toolchain nightly-2024-05-18-aarch64-apple-darwin
17+
rustup toolchain install nightly-2025-04-15-aarch64-apple-darwin
18+
rustup component add rust-src --toolchain nightly-2025-04-15-aarch64-apple-darwin
1919
rustup target add \
2020
x86_64-apple-darwin \
2121
aarch64-apple-darwin \

.github/workflows/linux.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Rust Nightly
1616
uses: dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain: nightly-2024-05-18
18+
toolchain: nightly-2025-04-15
1919
components: rust-src
2020

2121
- name: Build binaries
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Rust Nightly
3434
uses: dtolnay/rust-toolchain@stable
3535
with:
36-
toolchain: nightly-2024-05-18
36+
toolchain: nightly-2025-04-15
3737
components: rust-src
3838

3939
- name: Build binaries

.github/workflows/macos.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Rust Nightly
1616
uses: dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain: nightly-2024-05-18
18+
toolchain: nightly-2025-04-15
1919
components: rust-src
2020

2121
- name: Build binary
@@ -33,7 +33,7 @@ jobs:
3333
- name: Install Rust Nightly
3434
uses: dtolnay/rust-toolchain@stable
3535
with:
36-
toolchain: nightly-2024-05-18
36+
toolchain: nightly-2025-04-15
3737
components: rust-src
3838

3939
- name: Build binary

.github/workflows/release.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252

5353
- name: Setup
5454
run: |
55-
rustup toolchain install nightly-2024-05-18-x86_64-unknown-linux-gnu
56-
rustup component add rust-src --toolchain nightly-2024-05-18-x86_64-unknown-linux-gnu
55+
rustup toolchain install nightly-2025-04-15-x86_64-unknown-linux-gnu
56+
rustup component add rust-src --toolchain nightly-2025-04-15-x86_64-unknown-linux-gnu
5757
rustup target add \
5858
aarch64-linux-android \
5959
armv7-linux-androideabi \
@@ -84,8 +84,8 @@ jobs:
8484

8585
- name: Setup
8686
run: |
87-
rustup toolchain install nightly-2024-05-18-aarch64-apple-darwin
88-
rustup component add rust-src --toolchain nightly-2024-05-18-aarch64-apple-darwin
87+
rustup toolchain install nightly-2025-04-15-aarch64-apple-darwin
88+
rustup component add rust-src --toolchain nightly-2025-04-15-aarch64-apple-darwin
8989
rustup target add \
9090
x86_64-apple-darwin \
9191
aarch64-apple-darwin \
@@ -153,7 +153,7 @@ jobs:
153153
- name: Install Rust Nightly
154154
uses: dtolnay/rust-toolchain@stable
155155
with:
156-
toolchain: nightly-2024-05-18
156+
toolchain: nightly-2025-04-15
157157
components: rust-src
158158

159159
- name: Build binaries
@@ -178,7 +178,7 @@ jobs:
178178
- name: Install Rust Nightly
179179
uses: dtolnay/rust-toolchain@stable
180180
with:
181-
toolchain: nightly-2024-05-18
181+
toolchain: nightly-2025-04-15
182182
components: rust-src
183183

184184
- name: Build binaries
@@ -203,7 +203,7 @@ jobs:
203203
- name: Install Rust Nightly
204204
uses: dtolnay/rust-toolchain@stable
205205
with:
206-
toolchain: nightly-2024-05-18
206+
toolchain: nightly-2025-04-15
207207
components: rust-src
208208

209209
- name: Build binary
@@ -228,7 +228,7 @@ jobs:
228228
- name: Install Rust Nightly
229229
uses: dtolnay/rust-toolchain@stable
230230
with:
231-
toolchain: nightly-2024-05-18
231+
toolchain: nightly-2025-04-15
232232
components: rust-src
233233

234234
- name: Build binary
@@ -253,7 +253,7 @@ jobs:
253253
- name: Install Rust Nightly
254254
uses: dtolnay/rust-toolchain@stable
255255
with:
256-
toolchain: nightly-2024-05-18
256+
toolchain: nightly-2025-04-15
257257
components: rust-src
258258

259259
- name: Build binary
@@ -278,7 +278,7 @@ jobs:
278278
- name: Install Rust Nightly
279279
uses: dtolnay/rust-toolchain@stable
280280
with:
281-
toolchain: nightly-2024-05-18
281+
toolchain: nightly-2025-04-15
282282
components: rust-src
283283

284284
- name: Setup emsdk

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install Rust Nightly
2828
uses: dtolnay/rust-toolchain@stable
2929
with:
30-
toolchain: nightly-2024-05-18
30+
toolchain: nightly-2025-04-15
3131
components: rust-src
3232

3333
- name: Build

.github/workflows/wasm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Rust Nightly
1616
uses: dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain: nightly-2024-05-18
18+
toolchain: nightly-2025-04-15
1919
components: rust-src
2020

2121
- name: Setup emsdk

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Install Rust Nightly
1616
uses: dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain: nightly-2024-05-18
18+
toolchain: nightly-2025-04-15
1919
components: rust-src
2020

2121
- name: Build binary

0 commit comments

Comments
 (0)