diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c0e26b..b44f4d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: toolchain: ${{ matrix.rust }} profile: minimal override: true - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Build run: cargo test --no-run --workspace --all-features - name: Default features @@ -62,7 +62,7 @@ jobs: toolchain: 1.64.0 # MSRV profile: minimal override: true - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Default features run: cargo check --workspace --all-targets - name: All features @@ -81,7 +81,7 @@ jobs: toolchain: stable profile: minimal override: true - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Check documentation env: RUSTDOCFLAGS: -D warnings @@ -101,7 +101,7 @@ jobs: profile: minimal override: true components: rustfmt - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Check formatting run: cargo fmt --all -- --check clippy: @@ -117,7 +117,7 @@ jobs: profile: minimal override: true components: clippy - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/rust-next.yml b/.github/workflows/rust-next.yml index 229f2f2..8329e87 100644 --- a/.github/workflows/rust-next.yml +++ b/.github/workflows/rust-next.yml @@ -23,7 +23,7 @@ jobs: toolchain: ${{ matrix.rust }} profile: minimal override: true - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Build run: cargo test --no-run --workspace --all-features - name: Default features @@ -51,7 +51,7 @@ jobs: profile: minimal override: true components: rustfmt - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - name: Check formatting run: cargo fmt --all -- --check clippy: @@ -73,7 +73,7 @@ jobs: profile: minimal override: true components: clippy - - uses: Swatinem/rust-cache@v1 + - uses: Swatinem/rust-cache@v2 - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}