From 8953b9e95e4694d72a7fb632cd6610cf169574b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 13:16:39 +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/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 313e213a8..dda83257d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -138,7 +138,7 @@ jobs: ruby-version: '4.0' bundler-cache: true - id: docker-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/ezbake-builder.tar key: docker-ezbake-${{ hashFiles('Dockerfile') }} @@ -150,7 +150,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