From e8527c2180f0dcd69b3e852693743dbac749fd4d Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 3 Dec 2021 12:49:27 +1100 Subject: [PATCH] Pin clippy version to version from rust-toolchain file --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a27778..a63ab63 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,13 +18,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2.4.0 - - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - profile: minimal - override: true - toolchain: stable - components: clippy + - name: Setup rust toolchain + run: rustup show - uses: Swatinem/rust-cache@v1.3.0 - run: cargo clippy --workspace --all-targets -- -D warnings