From 05de4a511edee9ca8a2c63474db1777bb8b58f68 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Tue, 29 Oct 2024 16:51:48 -0400 Subject: [PATCH 1/3] fix toolchain --- .github/workflows/check-rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index 6723a8d73..5fe92f607 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -225,7 +225,7 @@ jobs: - name: Install Rust ${{ matrix.rust-branch }} uses: actions-rs/toolchain@v1.0.6 with: - toolchain: ${{ matrix.rust-branch }} + toolchain: stable components: rustfmt, clippy profile: minimal From beca39b4721c6cb9210d4f62b923c9684e746124 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Tue, 29 Oct 2024 16:53:38 -0400 Subject: [PATCH 2/3] bump CI From 50f8a9dbcfea2257a6ae210db59f1f9b5cbaf7e4 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Tue, 29 Oct 2024 16:56:12 -0400 Subject: [PATCH 3/3] fix --- .github/workflows/check-rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index 5fe92f607..116ffe282 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -222,7 +222,7 @@ jobs: sudo apt-get update && sudo apt-get install -y clang curl libssl-dev llvm libudev-dev protobuf-compiler - - name: Install Rust ${{ matrix.rust-branch }} + - name: Install Rust Stable uses: actions-rs/toolchain@v1.0.6 with: toolchain: stable @@ -232,7 +232,7 @@ jobs: - name: Utilize Shared Rust Cache uses: Swatinem/rust-cache@v2.2.1 with: - key: ${{ matrix.os }}-${{ env.RUST_BIN_DIR }} + key: ubuntu-latest-${{ env.RUST_BIN_DIR }} - name: Install cargo-audit run: cargo install cargo-audit