From 088a51cb5f7b3381757ee37552f0ece9a3ac89eb Mon Sep 17 00:00:00 2001 From: Waffle Maybe Date: Mon, 25 Oct 2021 17:39:26 +0300 Subject: [PATCH] Pin tooling in the CI to a specific version Both Clippy and Rustfmt are pinned to the current latest version (2021-10-24) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f33adb24..ffd40f1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: nightly-2021-10-24 override: true components: rustfmt @@ -34,7 +34,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: nightly-2021-10-24 override: true components: clippy