From f25d21007b3134e34d1bcdf1a49efa65b96c3eb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 06:05:56 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 20 ++++++++++---------- .github/workflows/release.yml | 8 ++++---- .github/workflows/security.yml | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a722b3c..4ca319a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: run: yarn install --frozen-lockfile - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -63,7 +63,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} @@ -86,7 +86,7 @@ jobs: uses: actions/checkout@v6 - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -99,7 +99,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} @@ -147,7 +147,7 @@ jobs: components: clippy - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -160,7 +160,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} @@ -185,7 +185,7 @@ jobs: uses: dtolnay/rust-toolchain@nightly - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -198,7 +198,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} @@ -225,7 +225,7 @@ jobs: uses: dtolnay/rust-toolchain@nightly - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -238,7 +238,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6822057..36cff4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -44,7 +44,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} @@ -86,7 +86,7 @@ jobs: uses: dtolnay/rust-toolchain@stable - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -99,7 +99,7 @@ jobs: - name: Cache dist id: cache-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: crates/web/dist key: ${{ runner.os }}-dist-${{ hashFiles('crates/web/Cargo.toml') }}-${{ hashFiles('crates/web/src/**') }} diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 1691291..bbdd118 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -49,7 +49,7 @@ jobs: - uses: actions/checkout@master - name: Install Rust run: rustup update stable && rustup default stable - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ${{ runner.tool_cache }}/cargo-vet key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}