From b6777bb9bbda4d39dcf8a4fb9b1dc28a59386e42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 May 2026 19:00:01 +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/pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 9423fb6a..def1cdd2 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -102,7 +102,7 @@ jobs: - name: Display Ruby environment run: bundle env - id: docker-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/ezbake-builder.tar key: docker-ezbake-${{ matrix.project }}-${{ hashFiles('Dockerfile') }} @@ -114,7 +114,7 @@ jobs: docker build -t ezbake-builder . docker save ezbake-builder -o /tmp/ezbake-builder.tar fi - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 if: always() && steps.docker-cache.outputs.cache-hit != 'true' with: path: /tmp/ezbake-builder.tar