Skip to content

Commit c844a75

Browse files
build(deps): Bump actions/cache from 4 to 5 (#4755)
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 959ab66 commit c844a75

10 files changed

+27
-27
lines changed

.github/workflows/build_iwasm_release.yml

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

109109
- name: get cached LLVM libraries
110110
id: retrieve_llvm_libs
111-
uses: actions/cache@v4
111+
uses: actions/cache@v5
112112
with:
113113
path: |
114114
./core/deps/llvm/build/bin

.github/workflows/build_llvm_libraries.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
8080
- name: Cache LLVM libraries
8181
id: retrieve_llvm_libs
82-
uses: actions/cache@v4
82+
uses: actions/cache@v5
8383
with:
8484
path: |
8585
./core/deps/llvm/build/bin
@@ -89,7 +89,7 @@ jobs:
8989
./core/deps/llvm/build/share
9090
key: ${{ steps.create_lib_cache_key.outputs.key}}
9191

92-
- uses: actions/cache@v4
92+
- uses: actions/cache@v5
9393
with:
9494
path: ~/.cache/ccache
9595
key: 0-ccache-${{ inputs.os }}-${{ steps.get_last_commit.outputs.last_commit }}
@@ -101,7 +101,7 @@ jobs:
101101
- run: sudo apt install -y ccache ninja-build
102102
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true' && startsWith(inputs.os, 'ubuntu') && inputs.container_image == ''
103103

104-
- uses: actions/cache@v4
104+
- uses: actions/cache@v5
105105
with:
106106
path: ~/Library/Caches/ccache
107107
key: 0-ccache-${{ inputs.os }}-${{ steps.get_last_commit.outputs.last_commit }}
@@ -112,7 +112,7 @@ jobs:
112112
- run: brew install ccache ninja
113113
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true' && startsWith(inputs.os, 'macos')
114114

115-
- uses: actions/cache@v4
115+
- uses: actions/cache@v5
116116
with:
117117
path: ~/.cache/ccache
118118
key: 0-ccache-${{ inputs.os }}-${{ steps.get_last_commit.outputs.last_commit }}

.github/workflows/build_wamr_lldb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Cache build
7070
id: lldb_build_cache
71-
uses: actions/cache@v4
71+
uses: actions/cache@v5
7272
with:
7373
path: |
7474
./core/deps/llvm-project/build/bin

.github/workflows/build_wamrc.yml

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

4646
- name: get cached LLVM libraries
4747
id: retrieve_llvm_libs
48-
uses: actions/cache@v4
48+
uses: actions/cache@v5
4949
with:
5050
path: |
5151
./core/deps/llvm/build/bin

.github/workflows/compilation_on_android_ubuntu.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
# it is hard to use `format` to assemble the cache key
107107
- name: Get LLVM libraries
108108
id: retrieve_llvm_libs
109-
uses: actions/cache@v4
109+
uses: actions/cache@v5
110110
with:
111111
path: |
112112
./core/deps/llvm/build/bin
@@ -277,7 +277,7 @@ jobs:
277277
- name: Get LLVM libraries
278278
id: retrieve_llvm_libs
279279
if: endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
280-
uses: actions/cache@v4
280+
uses: actions/cache@v5
281281
with:
282282
path: |
283283
./core/deps/llvm/build/bin
@@ -326,7 +326,7 @@ jobs:
326326

327327
- name: Get LLVM libraries
328328
id: retrieve_llvm_libs
329-
uses: actions/cache@v4
329+
uses: actions/cache@v5
330330
with:
331331
path: |
332332
./core/deps/llvm/build/bin
@@ -383,7 +383,7 @@ jobs:
383383

384384
- name: Get LLVM libraries
385385
id: retrieve_llvm_libs
386-
uses: actions/cache@v4
386+
uses: actions/cache@v5
387387
with:
388388
path: |
389389
./core/deps/llvm/build/bin
@@ -449,7 +449,7 @@ jobs:
449449
- name: Get LLVM libraries
450450
id: retrieve_llvm_libs
451451
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
452-
uses: actions/cache@v4
452+
uses: actions/cache@v5
453453
with:
454454
path: |
455455
./core/deps/llvm/build/bin
@@ -505,7 +505,7 @@ jobs:
505505

506506
- name: Get LLVM libraries
507507
id: retrieve_llvm_libs
508-
uses: actions/cache@v4
508+
uses: actions/cache@v5
509509
with:
510510
path: |
511511
./core/deps/llvm/build/bin
@@ -701,7 +701,7 @@ jobs:
701701
- name: Get LLVM libraries
702702
if: env.USE_LLVM == 'true'
703703
id: retrieve_llvm_libs
704-
uses: actions/cache@v4
704+
uses: actions/cache@v5
705705
with:
706706
path: |
707707
./core/deps/llvm/build/bin

.github/workflows/compilation_on_macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Get LLVM libraries
9292
id: retrieve_llvm_libs
93-
uses: actions/cache@v4
93+
uses: actions/cache@v5
9494
with:
9595
path: |
9696
./core/deps/llvm/build/bin
@@ -192,7 +192,7 @@ jobs:
192192
- name: Get LLVM libraries
193193
id: retrieve_llvm_libs
194194
if: endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
195-
uses: actions/cache@v4
195+
uses: actions/cache@v5
196196
with:
197197
path: |
198198
./core/deps/llvm/build/bin
@@ -258,7 +258,7 @@ jobs:
258258
- name: Get LLVM libraries
259259
id: retrieve_llvm_libs
260260
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
261-
uses: actions/cache@v4
261+
uses: actions/cache@v5
262262
with:
263263
path: |
264264
./core/deps/llvm/build/bin
@@ -366,7 +366,7 @@ jobs:
366366
367367
- name: Get LLVM libraries
368368
id: retrieve_llvm_libs
369-
uses: actions/cache@v4
369+
uses: actions/cache@v5
370370
with:
371371
path: |
372372
./core/deps/llvm/build/bin

.github/workflows/compilation_on_sgx.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
- name: Get LLVM libraries
191191
if: matrix.iwasm_make_options_run_mode == '$AOT_BUILD_OPTIONS'
192192
id: retrieve_llvm_libs
193-
uses: actions/cache@v4
193+
uses: actions/cache@v5
194194
with:
195195
path: |
196196
./core/deps/llvm/build/bin
@@ -267,7 +267,7 @@ jobs:
267267
- name: Get LLVM libraries
268268
if: matrix.running_mode == 'aot'
269269
id: retrieve_llvm_libs
270-
uses: actions/cache@v4
270+
uses: actions/cache@v5
271271
with:
272272
path: |
273273
./core/deps/llvm/build/bin

.github/workflows/compilation_on_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
# it is hard to use `format` to assemble the cache key
115115
- name: Get LLVM libraries
116116
id: retrieve_llvm_libs
117-
uses: actions/cache@v4
117+
uses: actions/cache@v5
118118
with:
119119
path: |
120120
./core/deps/llvm/build/bin

.github/workflows/nightly_run.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# it is hard to use `format` to assemble the cache key
7474
- name: Get LLVM libraries
7575
id: retrieve_llvm_libs
76-
uses: actions/cache@v4
76+
uses: actions/cache@v5
7777
with:
7878
path: |
7979
./core/deps/llvm/build/bin
@@ -241,7 +241,7 @@ jobs:
241241
- name: Get LLVM libraries
242242
id: retrieve_llvm_libs
243243
if: endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
244-
uses: actions/cache@v4
244+
uses: actions/cache@v5
245245
with:
246246
path: |
247247
./core/deps/llvm/build/bin
@@ -418,7 +418,7 @@ jobs:
418418
- name: Get LLVM libraries
419419
id: retrieve_llvm_libs
420420
if: (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
421-
uses: actions/cache@v4
421+
uses: actions/cache@v5
422422
with:
423423
path: |
424424
./core/deps/llvm/build/bin
@@ -475,7 +475,7 @@ jobs:
475475

476476
- name: Get LLVM libraries
477477
id: retrieve_llvm_libs
478-
uses: actions/cache@v4
478+
uses: actions/cache@v5
479479
with:
480480
path: |
481481
./core/deps/llvm/build/bin
@@ -689,7 +689,7 @@ jobs:
689689
- name: Get LLVM libraries
690690
if: env.USE_LLVM == 'true'
691691
id: retrieve_llvm_libs
692-
uses: actions/cache@v4
692+
uses: actions/cache@v5
693693
with:
694694
path: |
695695
./core/deps/llvm/build/bin

.github/workflows/spec_test_on_nuttx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
- name: Get LLVM libraries
166166
if: contains(matrix.wamr_test_option.mode, 'aot')
167167
id: retrieve_llvm_libs
168-
uses: actions/cache@v4
168+
uses: actions/cache@v5
169169
with:
170170
path: |
171171
./core/deps/llvm/build/bin

0 commit comments

Comments
 (0)