Skip to content

Commit 45babfb

Browse files
Bump actions/cache from 4 to 5 (#101)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4e4d168 commit 45babfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125

126126
- name: Restore cached micro.sfx
127127
id: restore-micro-sfx
128-
uses: actions/cache/restore@v4
128+
uses: actions/cache/restore@v5
129129
with:
130130
path: buildroot/bin/micro.sfx
131131
key: micro-sfx-${{ runner.os }}-${{ runner.arch }}-${{ needs.phar.outputs.php-version }}-${{ hashFiles('craft.yml') }}
@@ -139,7 +139,7 @@ jobs:
139139
- name: Cache micro.sfx
140140
id: cache-micro-sfx
141141
if: steps.restore-micro-sfx.outputs.cache-hit != 'true'
142-
uses: actions/cache/save@v4
142+
uses: actions/cache/save@v5
143143
with:
144144
path: buildroot/bin/micro.sfx
145145
key: ${{ steps.restore-micro-sfx.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)