From 9ed0543512ca6b0d26db4b1811bdf964231cd328 Mon Sep 17 00:00:00 2001 From: Henri Chataing Date: Wed, 26 Nov 2025 09:47:50 +0100 Subject: [PATCH] Set the rust version at 1.83 for the Clippy rule --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79ca065..5f56edc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,6 +60,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 + - name: Install 1.83.0 Rust + run: | + rustup default 1.83.0 + rustup component add clippy + - name: Setup Rust cache uses: Swatinem/rust-cache@v2