ci: Upgrade the version of Rust nightly

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
This commit is contained in:
Kévin Commaille
2025-08-13 11:54:56 +02:00
committed by Andy Balaam
parent a9ce1c6e58
commit c6210cad21
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -309,7 +309,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-06-27
toolchain: nightly-2025-08-08
components: clippy, rustfmt
- name: Load cache
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-06-27
toolchain: nightly-2025-08-08
- name: Install Node.js
uses: actions/setup-node@v4
+1 -1
View File
@@ -17,7 +17,7 @@ use release::ReleaseArgs;
use swift::SwiftArgs;
use xshell::{Shell, cmd};
const NIGHTLY: &str = "nightly-2025-06-27";
const NIGHTLY: &str = "nightly-2025-08-08";
type Result<T, E = Box<dyn std::error::Error>> = std::result::Result<T, E>;