From 9247cfa878ce8ec50c6464a9a9a63a3c8c0eb32b Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sat, 11 Feb 2023 19:04:25 +1300 Subject: [PATCH] feat(ci): pin Rust version for clippy job (#3445) Always referencing the latest version of Rust for clippy creates problems during backporting as already fixed problems in master come up again during a backport. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cab4dea2..1a19c10f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -172,7 +172,7 @@ jobs: fail-fast: false matrix: rust-version: [ - stable, + 1.67.1, # current stable beta ] steps: