diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 1dc82cff3..d372759e1 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-2024-05-19 + toolchain: nightly-2024-06-24 components: rustfmt - name: Run Benchmarks diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad908a7d8..fd59f0b74 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -279,7 +279,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2024-05-19 + toolchain: nightly-2024-06-24 components: rustfmt - name: Cargo fmt @@ -316,7 +316,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2024-05-19 + toolchain: nightly-2024-06-24 components: clippy - name: Load cache diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a3ad065ae..b4bf4436e 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -37,7 +37,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@master with: - toolchain: nightly-2024-05-19 + toolchain: nightly-2024-06-24 - name: Install Node.js uses: actions/setup-node@v4 diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 8b004f109..544685283 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -11,7 +11,7 @@ use kotlin::KotlinArgs; use swift::SwiftArgs; use xshell::cmd; -const NIGHTLY: &str = "nightly-2024-05-19"; +const NIGHTLY: &str = "nightly-2024-06-24"; type Result> = std::result::Result;