@@ -86,13 +86,13 @@ jobs:
86
86
llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
87
87
steps :
88
88
- name : checkout
89
- uses : actions/checkout@v3
89
+ uses : actions/checkout@v4
90
90
91
91
# since jobs.id can't contain the dot character
92
92
# it is hard to use `format` to assemble the cache key
93
93
- name : Get LLVM libraries
94
94
id : retrieve_llvm_libs
95
- uses : actions/cache@v3
95
+ uses : actions/cache@v4
96
96
with :
97
97
path : |
98
98
./core/deps/llvm/build/bin
@@ -215,13 +215,13 @@ jobs:
215
215
llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
216
216
steps :
217
217
- name : checkout
218
- uses : actions/checkout@v3
218
+ uses : actions/checkout@v4
219
219
220
220
# only download llvm cache when needed
221
221
- name : Get LLVM libraries
222
222
id : retrieve_llvm_libs
223
223
if : endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
224
- uses : actions/cache@v3
224
+ uses : actions/cache@v4
225
225
with :
226
226
path : |
227
227
./core/deps/llvm/build/bin
@@ -286,12 +286,12 @@ jobs:
286
286
287
287
steps :
288
288
- name : checkout
289
- uses : actions/checkout@v3
289
+ uses : actions/checkout@v4
290
290
291
291
- name : Get LLVM libraries
292
292
id : retrieve_llvm_libs
293
293
if : (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
294
- uses : actions/cache@v3
294
+ uses : actions/cache@v4
295
295
with :
296
296
path : |
297
297
./core/deps/llvm/build/bin
@@ -352,7 +352,7 @@ jobs:
352
352
llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
353
353
steps :
354
354
- name : checkout
355
- uses : actions/checkout@v3
355
+ uses : actions/checkout@v4
356
356
357
357
- name : download and install wasi-sdk
358
358
run : |
@@ -369,7 +369,7 @@ jobs:
369
369
sudo mv wabt-1.0.31 wabt
370
370
- name : Get LLVM libraries
371
371
id : retrieve_llvm_libs
372
- uses : actions/cache@v3
372
+ uses : actions/cache@v4
373
373
with :
374
374
path : |
375
375
./core/deps/llvm/build/bin
@@ -527,7 +527,7 @@ jobs:
527
527
test_option : $GC_TEST_OPTIONS
528
528
steps :
529
529
- name : checkout
530
- uses : actions/checkout@v3
530
+ uses : actions/checkout@v4
531
531
532
532
- name : Set-up OCaml
533
533
uses : ocaml/setup-ocaml@v2
@@ -572,7 +572,7 @@ jobs:
572
572
- name : Get LLVM libraries
573
573
if : env.USE_LLVM == 'true'
574
574
id : retrieve_llvm_libs
575
- uses : actions/cache@v3
575
+ uses : actions/cache@v4
576
576
with :
577
577
path : |
578
578
./core/deps/llvm/build/bin
@@ -651,7 +651,7 @@ jobs:
651
651
652
652
steps :
653
653
- name : checkout
654
- uses : actions/checkout@v3
654
+ uses : actions/checkout@v4
655
655
656
656
- name : install dependencies
657
657
run : |
@@ -670,7 +670,7 @@ jobs:
670
670
671
671
- name : Cache LLDB
672
672
id : cache-lldb
673
- uses : actions/cache@v3
673
+ uses : actions/cache@v4
674
674
env :
675
675
cache-name : cache-lldb-vscode
676
676
with :
0 commit comments