@@ -85,13 +85,13 @@ jobs:
8585 llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
8686 steps :
8787 - name : checkout
88- uses : actions/checkout@v3
88+ uses : actions/checkout@v4
8989
9090 # since jobs.id can't contain the dot character
9191 # it is hard to use `format` to assemble the cache key
9292 - name : Get LLVM libraries
9393 id : retrieve_llvm_libs
94- uses : actions/cache@v3
94+ uses : actions/cache@v4
9595 with :
9696 path : |
9797 ./core/deps/llvm/build/bin
@@ -214,13 +214,13 @@ jobs:
214214 llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
215215 steps :
216216 - name : checkout
217- uses : actions/checkout@v3
217+ uses : actions/checkout@v4
218218
219219 # only download llvm cache when needed
220220 - name : Get LLVM libraries
221221 id : retrieve_llvm_libs
222222 if : endsWith(matrix.make_options_run_mode, '_JIT_BUILD_OPTIONS')
223- uses : actions/cache@v3
223+ uses : actions/cache@v4
224224 with :
225225 path : |
226226 ./core/deps/llvm/build/bin
@@ -285,12 +285,12 @@ jobs:
285285
286286 steps :
287287 - name : checkout
288- uses : actions/checkout@v3
288+ uses : actions/checkout@v4
289289
290290 - name : Get LLVM libraries
291291 id : retrieve_llvm_libs
292292 if : (!endsWith(matrix.make_options, '_INTERP_BUILD_OPTIONS'))
293- uses : actions/cache@v3
293+ uses : actions/cache@v4
294294 with :
295295 path : |
296296 ./core/deps/llvm/build/bin
@@ -351,7 +351,7 @@ jobs:
351351 llvm_cache_key : ${{ needs.build_llvm_libraries_on_ubuntu_2204.outputs.cache_key }}
352352 steps :
353353 - name : checkout
354- uses : actions/checkout@v3
354+ uses : actions/checkout@v4
355355
356356 - name : download and install wasi-sdk
357357 run : |
@@ -368,7 +368,7 @@ jobs:
368368 sudo mv wabt-1.0.31 wabt
369369 - name : Get LLVM libraries
370370 id : retrieve_llvm_libs
371- uses : actions/cache@v3
371+ uses : actions/cache@v4
372372 with :
373373 path : |
374374 ./core/deps/llvm/build/bin
@@ -520,7 +520,7 @@ jobs:
520520 test_option : $SIMD_TEST_OPTIONS
521521 steps :
522522 - name : checkout
523- uses : actions/checkout@v3
523+ uses : actions/checkout@v4
524524
525525 - name : download and install wasi-sdk
526526 if : matrix.test_option == '$WASI_TEST_OPTIONS'
@@ -555,7 +555,7 @@ jobs:
555555 - name : Get LLVM libraries
556556 if : env.USE_LLVM == 'true'
557557 id : retrieve_llvm_libs
558- uses : actions/cache@v3
558+ uses : actions/cache@v4
559559 with :
560560 path : |
561561 ./core/deps/llvm/build/bin
@@ -617,7 +617,7 @@ jobs:
617617
618618 steps :
619619 - name : checkout
620- uses : actions/checkout@v3
620+ uses : actions/checkout@v4
621621
622622 - name : install dependencies
623623 run : |
@@ -636,7 +636,7 @@ jobs:
636636
637637 - name : Cache LLDB
638638 id : cache-lldb
639- uses : actions/cache@v3
639+ uses : actions/cache@v4
640640 env :
641641 cache-name : cache-lldb-vscode
642642 with :
0 commit comments