diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index eaeb73062fc..68081c7dacd 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -17,7 +17,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-02-20 + toolchain: nightly-2025-03-27 components: rustfmt - name: Run Benchmarks diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c30ef03886b..9daa31c4544 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -314,7 +314,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-02-20 + toolchain: nightly-2025-03-27 components: clippy, rustfmt - name: Load cache diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a8fbee3ea1c..1c4cb7107ce 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -36,7 +36,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2025-02-20 + toolchain: nightly-2025-03-27 - name: Install Node.js uses: actions/setup-node@v4 diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 12f29df96c2..e232cb2b114 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -17,7 +17,7 @@ use release::ReleaseArgs; use swift::SwiftArgs; use xshell::{cmd, Shell}; -const NIGHTLY: &str = "nightly-2025-02-20"; +const NIGHTLY: &str = "nightly-2025-03-27"; type Result> = std::result::Result;