Skip to content

Commit 852df76

Browse files
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](actions/cache@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] <support@github.com>
1 parent 961cad8 commit 852df76

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656
- name: Mount devbox cli cache
5757
if: inputs.refresh-cli == 'false'
5858
id: cache-devbox-cli
59-
uses: actions/cache/restore@v4
59+
uses: actions/cache/restore@v5
6060
with:
6161
path: ~/.local/bin/devbox
6262
key: ${{ runner.os }}-${{ runner.arch }}-devbox-cli-${{ env.latest_version }}
@@ -105,7 +105,7 @@ runs:
105105
106106
- name: Save devbox cli cache
107107
if: inputs.refresh-cli == 'false' && steps.cache-devbox-cli.outputs.cache-hit != 'true'
108-
uses: actions/cache/save@v4
108+
uses: actions/cache/save@v5
109109
with:
110110
path: ~/.local/bin/devbox
111111
key: ${{ runner.os }}-${{ runner.arch }}-devbox-cli-${{ env.latest_version }}
@@ -159,7 +159,7 @@ runs:
159159
- name: Mount nix store cache
160160
id: cache-devbox-nix-store
161161
if: inputs.enable-cache == 'true'
162-
uses: actions/cache/restore@v4
162+
uses: actions/cache/restore@v5
163163
with:
164164
path: |
165165
~/.cache/devbox
@@ -187,7 +187,7 @@ runs:
187187
188188
- name: Save nix store cache
189189
if: inputs.enable-cache == 'true' && steps.cache-devbox-nix-store.outputs.cache-hit != 'true'
190-
uses: actions/cache/save@v4
190+
uses: actions/cache/save@v5
191191
with:
192192
path: |
193193
~/.cache/devbox

0 commit comments

Comments
 (0)