From 3f318a8675e4c3de4f5e8ab2d086189f2ae5f5cf Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Wed, 10 Mar 2021 13:28:56 +0900 Subject: [PATCH] Run lints against a precise version of the rust toolchain This will allow PRs with failed CI just because they happened with a newer version of rustfmt/clippy than last time the master branch was checked. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1034ab610..7856de4c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: uses: ./.github/actions/rust-toolchain with: components: ${{ matrix.component }} + toolchain: 1.50.0 - name: clippy version run: cargo clippy --version