Skip to content

Commit c565323

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 d2f5d90 commit c565323

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
# Restore xmake dependencies
120120
- name: Restore cached xmake dependencies
121121
id: restore-depcache
122-
uses: actions/cache/restore@v4
122+
uses: actions/cache/restore@v5
123123
with:
124124
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
125125
key: ${{ matrix.confs.plat }}-${{ matrix.confs.arch }}-${{ matrix.confs.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}
@@ -131,7 +131,7 @@ jobs:
131131
# Save dependencies
132132
- name: Save cached xmake dependencies
133133
if: ${{ !steps.restore-depcache.outputs.cache-hit }}
134-
uses: actions/cache/save@v4
134+
uses: actions/cache/save@v5
135135
with:
136136
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
137137
key: ${{ steps.restore-depcache.outputs.cache-primary-key }}

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
# Cache xmake dependencies
7878
- name: Retrieve cached xmake dependencies (Linux)
79-
uses: actions/cache@v4
79+
uses: actions/cache@v5
8080
with:
8181
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
8282
key: ${{ matrix.config.plat }}-${{ matrix.config.arch }}-coverage-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

0 commit comments

Comments
 (0)