From 1cf7c198a82dda18e90975d62075e11b61ee6bd4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 17:18:08 +0000 Subject: [PATCH] Bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/watcher.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/watcher.yml b/.github/workflows/watcher.yml index 8ccc467..a6e4580 100644 --- a/.github/workflows/watcher.yml +++ b/.github/workflows/watcher.yml @@ -69,7 +69,7 @@ jobs: # Derived cache, never state: the per-listing ETags, the failure counts # and the issue numbers. Losing it costs one expensive tick. - name: Restore the derived cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 with: path: .watcher key: watcher-${{ github.run_id }} @@ -123,7 +123,7 @@ jobs: - name: Save the derived cache if: ${{ success() && inputs.dry_run != true }} - uses: actions/cache/save@v4 + uses: actions/cache/save@v6 with: path: .watcher key: watcher-${{ github.run_id }}