From 061ed2d6a4c4a8190f7fc4da26d5af39f5a3d41e Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 15 May 2025 18:21:06 -0600 Subject: [PATCH] github-ci: use rust 1.85.0 for clippy check on templates Currently our CI clippy test is based on 1.85.0, but the clippy test for the templates was using latest stable. Unify the clippy checks to 1.85.0. --- .github/workflows/builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 8953b8e870..e27366af2c 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -283,7 +283,7 @@ jobs: sudo \ which \ zlib-devel - - run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y + - run: curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.85.0 -y - run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH - run: rustup component add rustfmt - run: rustup component add clippy