From 8d1e2fb6920412b4ca019b1a6b583a699d553f96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 02:14:14 +0000 Subject: [PATCH] chore(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/install-test.yml | 2 +- .github/workflows/publish-linux-packages.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/install-test.yml b/.github/workflows/install-test.yml index 9dc3225..a6348b0 100644 --- a/.github/workflows/install-test.yml +++ b/.github/workflows/install-test.yml @@ -60,7 +60,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.cargo/registry key: cargo-install-${{ runner.os }}-${{ github.run_id }} diff --git a/.github/workflows/publish-linux-packages.yml b/.github/workflows/publish-linux-packages.yml index f2c4dfd..74454b0 100644 --- a/.github/workflows/publish-linux-packages.yml +++ b/.github/workflows/publish-linux-packages.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: | ~/.cargo/registry @@ -42,7 +42,7 @@ jobs: steps: - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b24d66d..088c7bd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: - name: Install cargo-dist run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.26.0/cargo-dist-installer.sh | sh" - name: Cache cargo-dist - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/bin/dist key: ${{ runner.os }}-cargo-dist-v0.26.0