From 0b0f96e65a192dbfa252d40c16cf7feb2deee3d3 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Mon, 4 Jan 2021 10:42:26 -0800 Subject: [PATCH] Pin clippy check to 1.49.0 It can be rather surprising when new lints pop up when a new stable toolchain is released. Let's pin this check to a specific version to avoid those surprises. --- .github/workflows/clippy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 76985f4b..585aab7f 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -17,7 +17,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: stable + toolchain: 1.49.0 override: true components: clippy - uses: actions-rs/clippy-check@v1