From bafb5c60c0b5e3113f19da2821eb7d8ddc0d0d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sat, 7 Sep 2024 14:53:08 +0200 Subject: [PATCH] ci: Bump the version of Rust nightly --- .github/workflows/ci.yml | 2 +- rust-toolchain.toml | 2 +- xtask/src/main.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d942fc58..19633e52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ env: CARGO_TERM_COLOR: always CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse # Keep in sync with version in `rust-toolchain.toml` and `xtask/src/ci.rs` - NIGHTLY: nightly-2024-07-29 + NIGHTLY: nightly-2024-09-06 on: push: diff --git a/rust-toolchain.toml b/rust-toolchain.toml index a2ab784c..b32b8c45 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] # Keep in sync with version in `xtask/src/ci.rs` and `.github/workflows/ci.yml` -channel = "nightly-2024-07-29" +channel = "nightly-2024-09-06" components = ["rustfmt", "clippy"] diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 057bc5e4..5c18a59b 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -15,7 +15,7 @@ use serde::Deserialize; use serde_json::from_str as from_json_str; // Keep in sync with version in `rust-toolchain.toml` and `.github/workflows/ci.yml` -const NIGHTLY: &str = "nightly-2024-07-29"; +const NIGHTLY: &str = "nightly-2024-09-06"; mod cargo; mod ci;