From 35d8e5930a366afca556e65d94d95742a30fcab6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 15:18:15 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 4e49492..330acc2 100644 --- a/action.yml +++ b/action.yml @@ -49,7 +49,7 @@ runs: echo "CACHE_KEY=${{ runner.os }}-snapshots-${JOB_HASH}" >> $GITHUB_ENV - name: "Restore cache snapshots database" id: cache-db - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: "${{ env.SNAPSHOTS_DB }}" key: "${{ env.CACHE_KEY }}" @@ -66,7 +66,7 @@ runs: run: | webchanges --config ${{ env.CONFIG_PATH }} --jobs ${{ env.JOBS_PATH }} --hooks ${{ env.HOOKS_PATH }} --database ${{ env.SNAPSHOTS_DB }} - name: "Cache snapshots database" - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: "${{ env.SNAPSHOTS_DB }}" key: "${{ env.CACHE_KEY }}"