From 454daf64a9885d108b9512b54f996236b25583de Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:06:25 +0000 Subject: [PATCH] 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] --- .github/workflows/build-dockers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-dockers.yml b/.github/workflows/build-dockers.yml index d7ac106..83d877f 100644 --- a/.github/workflows/build-dockers.yml +++ b/.github/workflows/build-dockers.yml @@ -38,7 +38,7 @@ jobs: commit_user_email: ${{ vars.COMMIT_USER }} - name: Cache build output - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: build key: build-dockers-${{ github.sha }} @@ -67,7 +67,7 @@ jobs: ref: ${{ github.head_ref }} - name: Restore build output - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: build key: build-dockers-${{ github.sha }}