diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index ebeb3a0..2ecb5b6 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -52,7 +52,7 @@ jobs: toolchain: ${{ matrix.toolchain }} targets: ${{ matrix.target }} - name: Cache build artifacts - uses: Swatinem/rust-cache@v2.7.5 + uses: Swatinem/rust-cache@v2.7.7 with: key: ${{ matrix.target }} - name: Check a package @@ -104,7 +104,7 @@ jobs: toolchain: ${{ matrix.toolchain }} targets: ${{ matrix.target }} - name: Cache build artifacts - uses: Swatinem/rust-cache@v2.7.5 + uses: Swatinem/rust-cache@v2.7.7 with: key: ${{ matrix.target }} - name: Run tests @@ -130,7 +130,7 @@ jobs: toolchain: stable components: rustfmt - name: Cache build artifacts - uses: Swatinem/rust-cache@v2.7.5 + uses: Swatinem/rust-cache@v2.7.7 - name: Check code formatted run: cargo fmt -- --check @@ -146,7 +146,7 @@ jobs: toolchain: stable components: clippy - name: Cache build artifacts - uses: Swatinem/rust-cache@v2.7.5 + uses: Swatinem/rust-cache@v2.7.7 - name: Check no lint warnings run: cargo clippy -- -D warnings - name: Check no lint warnings (no default features) @@ -163,7 +163,7 @@ jobs: with: toolchain: stable - name: Cache build artifacts - uses: Swatinem/rust-cache@v2.7.5 + uses: Swatinem/rust-cache@v2.7.7 - name: Check no `rustdoc` lint warnings run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items @@ -178,6 +178,6 @@ jobs: with: toolchain: nightly - name: Cache build artifacts - uses: Swatinem/rust-cache@v2.7.5 + uses: Swatinem/rust-cache@v2.7.7 - name: Run benchmarks run: cargo bench