From 5bfbd6ebbabb2f62620564b619fdd53bc034e229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Fournier?= Date: Tue, 1 Nov 2022 11:24:53 +0100 Subject: [PATCH] Use stable toolchain for lints in CI --- .github/workflows/rust.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 360a2c45..d8c857e7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -51,11 +51,10 @@ jobs: - name: Checkout sources uses: actions/checkout@v2 - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 + - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly + toolchain: stable override: true components: rustfmt, clippy