From 4a56f7482724925760aae2f6c2d3a8be2cfd0bf4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 01:13:34 +0000 Subject: [PATCH] Build(deps): bump actions/cache from 3 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...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/_release_python.yml | 4 ++-- .github/workflows/code_coverage.yml | 4 ++-- .github/workflows/release_bump_versions.yml | 2 +- .github/workflows/test_ui.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/_release_python.yml b/.github/workflows/_release_python.yml index f1cd24d55e..ffca49a149 100644 --- a/.github/workflows/_release_python.yml +++ b/.github/workflows/_release_python.yml @@ -31,7 +31,7 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | @@ -169,7 +169,7 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 46cb324490..f9f04a8c42 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -23,14 +23,14 @@ with: ref: ${{ github.head_ref }} - name: Cache sccache - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: /home/runner/.cache/sccache key: codecov-${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }} restore-keys: | codecov-${{ runner.os }}-sccache- - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | diff --git a/.github/workflows/release_bump_versions.yml b/.github/workflows/release_bump_versions.yml index e65774eade..ac5466d52f 100644 --- a/.github/workflows/release_bump_versions.yml +++ b/.github/workflows/release_bump_versions.yml @@ -36,7 +36,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | diff --git a/.github/workflows/test_ui.yml b/.github/workflows/test_ui.yml index f35b4cdced..f9243ea227 100644 --- a/.github/workflows/test_ui.yml +++ b/.github/workflows/test_ui.yml @@ -74,7 +74,7 @@ jobs: esac - name: Cache playwright browsers id: pw-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ steps.pw-cache-dir.outputs.dir }} key: playwright-${{ runner.os }}-${{ matrix.browser }}-${{ hashFiles('ui-tests/package-lock.json') }}