Skip to content

Commit 6d3725e

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

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
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Restore cached micro.sfx
8989
id: restore-micro-sfx
90-
uses: actions/cache/restore@v4
90+
uses: actions/cache/restore@v5
9191
with:
9292
path: buildroot/bin/micro.sfx
9393
key: micro-sfx-${{ runner.os }}-${{ runner.arch }}-${{ needs.phar.outputs.php-version }}-${{ hashFiles('craft.yml') }}
@@ -101,7 +101,7 @@ jobs:
101101
- name: Cache micro.sfx
102102
id: cache-micro-sfx
103103
if: steps.restore-micro-sfx.outputs.cache-hit != 'true'
104-
uses: actions/cache/save@v4
104+
uses: actions/cache/save@v5
105105
with:
106106
path: buildroot/bin/micro.sfx
107107
key: ${{ steps.restore-micro-sfx.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)