From f92e4149f704e8bf95c75ceb680616f9786d575a Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Wed, 17 Apr 2024 13:37:57 -0400 Subject: [PATCH] CI: Use actions-rust-lang/setup-rust-toolchain Replace actions-rs/toolchain with actions-rust-lang/setup-rust-toolchain since the former is deprecated/archived and is throwing CI warnings. --- .github/workflows/clippy.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 0cbc017..3527c97 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -20,12 +20,10 @@ jobs: uses: actions/checkout@v4 - name: Install Rust toolchain - uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1 + uses: actions-rust-lang/setup-rust-toolchain@b113a30d27a8e59c969077c0a0168cc13dab5ffc #@v1.8.0 with: - profile: minimal toolchain: stable components: clippy - override: true - name: Restore Rust Cache uses: Swatinem/rust-cache@v2