From 1b26a29f21697eba09f0a21b390830afda981fcf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 09:47:16 +0000 Subject: [PATCH] chore(deps): Bump Swatinem/rust-cache from 2.7.5 to 2.7.7 Bumps [Swatinem/rust-cache](https://github.com/swatinem/rust-cache) from 2.7.5 to 2.7.7. - [Release notes](https://github.com/swatinem/rust-cache/releases) - [Changelog](https://github.com/Swatinem/rust-cache/blob/master/CHANGELOG.md) - [Commits](https://github.com/swatinem/rust-cache/compare/v2.7.5...v2.7.7) --- updated-dependencies: - dependency-name: Swatinem/rust-cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 4896b99..4c06efb 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -49,7 +49,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 @@ -102,7 +102,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 @@ -132,7 +132,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 @@ -148,7 +148,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 (all features) @@ -167,7 +167,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 --all-features @@ -182,6 +182,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 --all-features