From 1977f669fa2bd78ad7baaf5c1bf6f303e992daa6 Mon Sep 17 00:00:00 2001 From: Etienne Wodey Date: Fri, 29 Nov 2024 23:53:58 +0100 Subject: [PATCH] Pin Rust to 1.82 for clippy --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f635c608e3..0a2cea16cb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,9 +27,9 @@ jobs: with: python-version: "3.10" - run: pip install -U ruff==0.6.8 black~=24.8 - - uses: dtolnay/rust-toolchain@stable + - uses: dtolnay/rust-toolchain@1.82 with: - components: rustfmt + components: rustfmt, clippy - name: Test Build run: cargo build - name: Rust Format