Skip to content

Commit 31817a4

Browse files
dependabot[bot]SirLynix
authored andcommitted
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 49f599f commit 31817a4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
# Retrieve xmake dependencies
6868
- name: Restore cached xmake dependencies
6969
id: restore-depcache
70-
uses: actions/cache/restore@v4
70+
uses: actions/cache/restore@v5
7171
with:
7272
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
7373
key: ${{ matrix.platform.os }}-${{ matrix.platform.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}${{ matrix.platform.cache_key }}
@@ -78,7 +78,7 @@ jobs:
7878
# Save dependencies
7979
- name: Save cached xmake dependencies
8080
if: ${{ !steps.restore-depcache.outputs.cache-hit }}
81-
uses: actions/cache/save@v4
81+
uses: actions/cache/save@v5
8282
with:
8383
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
8484
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)