@@ -85,13 +85,13 @@ jobs:
85
85
llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
86
86
steps :
87
87
- name : checkout
88
- uses : actions/checkout@v3
88
+ uses : actions/checkout@v4
89
89
90
90
# since jobs.id can't contain the dot character
91
91
# it is hard to use `format` to assemble the cache key
92
92
- name : Get LLVM libraries
93
93
id : retrieve_llvm_libs
94
- uses : actions/cache@v3
94
+ uses : actions/cache@v4
95
95
with :
96
96
path : |
97
97
./core/deps/llvm/build/bin
@@ -214,13 +214,13 @@ jobs:
214
214
llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
215
215
steps :
216
216
- name : checkout
217
- uses : actions/checkout@v3
217
+ uses : actions/checkout@v4
218
218
219
219
# only download llvm cache when needed
220
220
- name : Get LLVM libraries
221
221
id : retrieve_llvm_libs
222
222
if : endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
223
- uses : actions/cache@v3
223
+ uses : actions/cache@v4
224
224
with :
225
225
path : |
226
226
./core/deps/llvm/build/bin
@@ -285,12 +285,12 @@ jobs:
285
285
286
286
steps :
287
287
- name : checkout
288
- uses : actions/checkout@v3
288
+ uses : actions/checkout@v4
289
289
290
290
- name : Get LLVM libraries
291
291
id : retrieve_llvm_libs
292
292
if : (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
293
- uses : actions/cache@v3
293
+ uses : actions/cache@v4
294
294
with :
295
295
path : |
296
296
./core/deps/llvm/build/bin
@@ -351,7 +351,7 @@ jobs:
351
351
llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
352
352
steps :
353
353
- name : checkout
354
- uses : actions/checkout@v3
354
+ uses : actions/checkout@v4
355
355
356
356
- name : download and install wasi-sdk
357
357
run : |
@@ -368,7 +368,7 @@ jobs:
368
368
sudo mv wabt-1.0.31 wabt
369
369
- name : Get LLVM libraries
370
370
id : retrieve_llvm_libs
371
- uses : actions/cache@v3
371
+ uses : actions/cache@v4
372
372
with :
373
373
path : |
374
374
./core/deps/llvm/build/bin
@@ -520,7 +520,7 @@ jobs:
520
520
test_option : $SIMD_TEST_OPTIONS
521
521
steps :
522
522
- name : checkout
523
- uses : actions/checkout@v3
523
+ uses : actions/checkout@v4
524
524
525
525
- name : download and install wasi-sdk
526
526
if : matrix.test_option == '$WASI_TEST_OPTIONS'
@@ -555,7 +555,7 @@ jobs:
555
555
- name : Get LLVM libraries
556
556
if : env.USE_LLVM == 'true'
557
557
id : retrieve_llvm_libs
558
- uses : actions/cache@v3
558
+ uses : actions/cache@v4
559
559
with :
560
560
path : |
561
561
./core/deps/llvm/build/bin
@@ -617,7 +617,7 @@ jobs:
617
617
618
618
steps :
619
619
- name : checkout
620
- uses : actions/checkout@v3
620
+ uses : actions/checkout@v4
621
621
622
622
- name : install dependencies
623
623
run : |
@@ -636,7 +636,7 @@ jobs:
636
636
637
637
- name : Cache LLDB
638
638
id : cache-lldb
639
- uses : actions/cache@v3
639
+ uses : actions/cache@v4
640
640
env :
641
641
cache-name : cache-lldb-vscode
642
642
with :
0 commit comments