From ae4dc99eeab81538af23389de556862568565d93 Mon Sep 17 00:00:00 2001 From: rhysd Date: Sat, 23 Jul 2022 11:22:09 +0900 Subject: [PATCH] use rust-cache action v2 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e63c1df..ad92434 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: profile: minimal toolchain: stable override: true - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - run: cargo test --all-features -- --skip src/lib.rs if: ${{ matrix.os != 'windows-latest' }} - run: cargo test --features=search -- --skip src\lib.rs @@ -34,7 +34,7 @@ jobs: toolchain: stable components: rustfmt, clippy override: true - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - run: cargo fmt -- --check - run: cargo clippy --examples --all-features -- -D warnings - run: cargo clippy --no-default-features -- -D warnings