From 57083ef3f8a8eeecb381ec3e282f110c30199e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 28 Feb 2023 16:29:25 +0100 Subject: [PATCH] ci: Unpin nightly version --- .github/workflows/ci.yml | 8 ++------ xtask/src/ci.rs | 4 +--- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3716de9..5d97d706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,9 +50,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - # FIXME: Remove pinning when clippy lint with clap issue is solved - # See https://github.com/clap-rs/clap/issues/4733 - toolchain: nightly-2023-02-25 + toolchain: nightly override: true - uses: Swatinem/rust-cache@v1 @@ -210,9 +208,7 @@ jobs: uses: actions-rs/toolchain@v1 with: profile: minimal - # FIXME: Remove pinning when clippy lint with clap issue is solved - # See https://github.com/clap-rs/clap/issues/4733 - toolchain: nightly-2023-02-25 + toolchain: nightly override: true components: ${{ matrix.components }} diff --git a/xtask/src/ci.rs b/xtask/src/ci.rs index 2118cff8..e1cd63b5 100644 --- a/xtask/src/ci.rs +++ b/xtask/src/ci.rs @@ -10,9 +10,7 @@ mod spec_links; use spec_links::check_spec_links; const MSRV: &str = "1.64"; -// FIXME: Remove pinning when clippy lint with clap issue is solved -// See https://github.com/clap-rs/clap/issues/4733 -const NIGHTLY: &str = "nightly-2023-02-25"; +const NIGHTLY: &str = "nightly"; #[derive(Args)] pub struct CiArgs {