From dad2e6eafde6d50ba93e6bffe10671b95ed6e780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 25 Jun 2024 17:11:33 +0200 Subject: [PATCH] ci: Bump the version of Rust nightly MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kévin Commaille --- .github/workflows/benchmarks.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/documentation.yml | 2 +- xtask/src/main.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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;