Skip to content

Commit f013204

Browse files
Bump actions/cache from 3 to 4 (#35)
1 parent c1c1440 commit f013204

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

.github/workflows/android-build.yml

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

6363
# Cache xmake dependencies
6464
- name: Retrieve cached xmake dependencies
65-
uses: actions/cache@v3
65+
uses: actions/cache@v4
6666
with:
6767
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
6868
key: Android-${{ matrix.ndk_sdkver }}-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,15 @@ jobs:
8282
# Cache xmake dependencies
8383
- name: Retrieve cached xmake dependencies (Linux)
8484
if: runner.os == 'Linux'
85-
uses: actions/cache@v3
85+
uses: actions/cache@v4
8686
with:
8787
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
8888
key: Linux-${{ matrix.config.arch }}-coverage-${{ steps.dep_hash_linux.outputs.hash }}-W${{ steps.cache_key.outputs.key }}
8989

9090
# Cache xmake dependencies
9191
- name: Retrieve cached xmake dependencies (Windows)
9292
if: runner.os == 'Windows'
93-
uses: actions/cache@v3
93+
uses: actions/cache@v4
9494
with:
9595
path: ${{ env.XMAKE_GLOBALDIR }}\.xmake\packages
9696
key: MSVC-${{ matrix.config.arch }}-coverage-${{ steps.dep_hash_windows.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/ios-build.yml

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

5555
# Cache xmake dependencies
5656
- name: Retrieve cached xmake dependencies
57-
uses: actions/cache@v3
57+
uses: actions/cache@v4
5858
with:
5959
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
6060
key: iOS-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/linux-build.yml

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

7070
# Cache xmake dependencies
7171
- name: Retrieve cached xmake dependencies
72-
uses: actions/cache@v3
72+
uses: actions/cache@v4
7373
with:
7474
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
7575
key: Linux-${{ matrix.arch }}-${{ matrix.confs.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/macos-build.yml

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

5858
# Cache xmake dependencies
5959
- name: Retrieve cached xmake dependencies
60-
uses: actions/cache@v3
60+
uses: actions/cache@v4
6161
with:
6262
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
6363
key: macOS-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/msys2-build.yml

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

6969
# Cache xmake dependencies
7070
- name: Retrieve cached xmake dependencies
71-
uses: actions/cache@v3
71+
uses: actions/cache@v4
7272
with:
7373
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
7474
key: MinGW-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/wasm-build.yml

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

6666
# Cache xmake dependencies
6767
- name: Retrieve cached xmake dependencies
68-
uses: actions/cache@v3
68+
uses: actions/cache@v4
6969
with:
7070
path: ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
7171
key: Wasm-${{ matrix.arch }}-${{ matrix.mode }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

.github/workflows/windows-build.yml

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

6565
# Cache xmake dependencies
6666
- name: Retrieve cached xmake dependencies
67-
uses: actions/cache@v3
67+
uses: actions/cache@v4
6868
with:
6969
path: ${{ env.XMAKE_GLOBALDIR }}\.xmake\packages
7070
key: MSVC-${{ matrix.arch }}-${{ matrix.config.mode }}-${{ matrix.config.runtime }}-${{ steps.dep_hash.outputs.hash }}-W${{ steps.cache_key.outputs.key }}

0 commit comments

Comments
 (0)