From 47e2034d2f46432b7d2f6e35bdabd690d3b9265a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 14:54:36 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 in /.github/actions/docker-cache-save 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/actions/docker-cache-save/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/docker-cache-save/action.yml b/.github/actions/docker-cache-save/action.yml index 82c6acb..a4098c8 100644 --- a/.github/actions/docker-cache-save/action.yml +++ b/.github/actions/docker-cache-save/action.yml @@ -54,7 +54,7 @@ runs: echo "key=$(docker image ls --format '{{.ID}} {{.Repository}}:{{.Tag}}' | grep -v '' | cut -d' ' -f 1 | sort | sha1sum | cut -d' ' -f1)" >> $GITHUB_OUTPUT echo "have=$(docker image ls --format '{{.Repository}}:{{.Tag}}' | grep -v '' >/dev/null 2>&1 && echo 1 || echo 0)" >> $GITHUB_OUTPUT - name: Save Docker Cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: format('{0}-{1}', inputs.cache-key, steps.docker_cache_key.outputs.key) != inputs.matched-key && steps.docker_cache_key.outputs.have == '1' with: key: ${{ inputs.cache-key }}-${{ steps.docker_cache_key.outputs.key }}