ci: Bump the version of Rust nightly

Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
This commit is contained in:
Kévin Commaille
2024-06-25 17:11:33 +02:00
committed by Damir Jelić
parent 56739202cf
commit dad2e6eafd
4 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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<T, E = Box<dyn std::error::Error>> = std::result::Result<T, E>;