From 852df76288de884e6f4c9ca5072c4b69ab5a0b0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 00:06:49 +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] --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index ee09f45..fbf09ef 100644 --- a/action.yml +++ b/action.yml @@ -56,7 +56,7 @@ runs: - name: Mount devbox cli cache if: inputs.refresh-cli == 'false' id: cache-devbox-cli - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: ~/.local/bin/devbox key: ${{ runner.os }}-${{ runner.arch }}-devbox-cli-${{ env.latest_version }} @@ -105,7 +105,7 @@ runs: - name: Save devbox cli cache if: inputs.refresh-cli == 'false' && steps.cache-devbox-cli.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: ~/.local/bin/devbox key: ${{ runner.os }}-${{ runner.arch }}-devbox-cli-${{ env.latest_version }} @@ -159,7 +159,7 @@ runs: - name: Mount nix store cache id: cache-devbox-nix-store if: inputs.enable-cache == 'true' - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: | ~/.cache/devbox @@ -187,7 +187,7 @@ runs: - name: Save nix store cache if: inputs.enable-cache == 'true' && steps.cache-devbox-nix-store.outputs.cache-hit != 'true' - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: | ~/.cache/devbox