Skip to content

Commit 91b817f

Browse files
committed
CI: Update version of checkout to supress warnings
1 parent 313ce8c commit 91b817f

19 files changed

+39
-39
lines changed

.github/workflows/build_docker_images.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Build and save Docker image(wasm-debug-server:${{ inputs.ver_num }}) to tar file
2727
run: |

.github/workflows/build_iwasm_release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
build:
3636
runs-on: ${{ inputs.runner }}
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: get cached LLVM libraries
4141
id: retrieve_llvm_libs

.github/workflows/build_llvm_libraries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: install dependencies
3737
run: /usr/bin/env python3 -m pip install -r requirements.txt

.github/workflows/build_wamr_lldb.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
PYTHON_UBUNTU_STANDALONE_BUILD: https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-unknown-linux-gnu-install_only.tar.gz
4848
PYTHON_MACOS_STANDALONE_BUILD: https://github.com/indygreg/python-build-standalone/releases/download/20230507/cpython-3.10.11+20230507-x86_64-apple-darwin-install_only.tar.gz
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151

5252
- name: download and install wasi-sdk
5353
run: |

.github/workflows/build_wamr_sdk.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
build:
3636
runs-on: ${{ inputs.runner }}
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: download and install wasi-sdk
4141
run: |

.github/workflows/build_wamr_vscode_ext.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
runs-on: ubuntu-22.04
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222

2323
- name: Use Node.js 16.x
2424
uses: actions/setup-node@v3

.github/workflows/build_wamrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
build:
3636
runs-on: ${{ inputs.runner }}
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: get cached LLVM libraries
4141
id: retrieve_llvm_libs

.github/workflows/coding_guidelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-20.04
2020
steps:
2121
- name: checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525

.github/workflows/compilation_on_android_ubuntu.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ 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
@@ -214,7 +214,7 @@ 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
@@ -285,7 +285,7 @@ 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
@@ -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: |
@@ -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'
@@ -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: |

.github/workflows/compilation_on_macos.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
llvm_cache_key: ${{ needs.build_llvm_libraries.outputs.cache_key }}
7272
steps:
7373
- name: checkout
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575

7676
- name: Get LLVM libraries
7777
id: retrieve_llvm_libs
@@ -174,7 +174,7 @@ jobs:
174174
llvm_cache_key: ${{ needs.build_llvm_libraries.outputs.cache_key }}
175175
steps:
176176
- name: checkout
177-
uses: actions/checkout@v3
177+
uses: actions/checkout@v4
178178

179179
# only download llvm cache when needed
180180
- name: Get LLVM libraries
@@ -226,7 +226,7 @@ jobs:
226226
]
227227
steps:
228228
- name: checkout
229-
uses: actions/checkout@v3
229+
uses: actions/checkout@v4
230230

231231
- name: download and install wabt
232232
run: |
@@ -258,7 +258,7 @@ jobs:
258258
]
259259
steps:
260260
- name: checkout
261-
uses: actions/checkout@v3
261+
uses: actions/checkout@v4
262262

263263
- name: download and install wasi-sdk
264264
run: |

.github/workflows/compilation_on_nuttx.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,21 @@ jobs:
8787

8888
steps:
8989
- name: Checkout NuttX
90-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
9191
with:
9292
repository: apache/incubator-nuttx
9393
ref: releases/12.4
9494
path: nuttx
9595

9696
- name: Checkout NuttX Apps
97-
uses: actions/checkout@v3
97+
uses: actions/checkout@v4
9898
with:
9999
repository: apache/incubator-nuttx-apps
100100
ref: releases/12.4
101101
path: apps
102102

103103
- name: Checkout WAMR
104-
uses: actions/checkout@v3
104+
uses: actions/checkout@v4
105105
with:
106106
repository: ${{ github.repository }}
107107
path: apps/interpreters/wamr/wamr

.github/workflows/compilation_on_sgx.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
source /opt/intel/sgxsdk/environment
120120
121121
- name: checkout
122-
uses: actions/checkout@v3
122+
uses: actions/checkout@v4
123123

124124
- name: Build iwasm
125125
run: |
@@ -165,7 +165,7 @@ jobs:
165165

166166
steps:
167167
- name: checkout
168-
uses: actions/checkout@v3
168+
uses: actions/checkout@v4
169169

170170
- name: download and install wasi-sdk
171171
run: |
@@ -290,7 +290,7 @@ jobs:
290290

291291
steps:
292292
- name: checkout
293-
uses: actions/checkout@v3
293+
uses: actions/checkout@v4
294294

295295
- name: Get LLVM libraries
296296
if: matrix.running_mode == 'aot'

.github/workflows/compilation_on_windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
"-DWAMR_BUILD_LIBC_UVWASI=0 -DWAMR_BUILD_LIBC_WASI=1"
7575
]
7676
steps:
77-
- uses: actions/checkout@v3
77+
- uses: actions/checkout@v4
7878

7979
- name: clone uvwasi library
8080
if: ${{ !contains(matrix.build_options, '-DWAMR_BUILD_LIBC_UVWASI=0') }}
@@ -108,7 +108,7 @@ jobs:
108108
]
109109
steps:
110110
- name: checkout
111-
uses: actions/checkout@v3
111+
uses: actions/checkout@v4
112112

113113
- name: download and install wasi-sdk
114114
if: matrix.test_option == '$WASI_TEST_OPTIONS'

.github/workflows/create_tag.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
new_tag: ${{ steps.preparation.outputs.new_tag }}
2525

2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
# Full git history is needed to get a proper list of commits and tags
2929
with:
3030
fetch-depth: 0

.github/workflows/hadolint_dockerfiles.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout repository
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838

3939
# on default, hadolint will fail on warnings and errors
4040
- name: Run hadolint on dockerfiles

.github/workflows/nightly_run.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
6969
steps:
7070
- name: checkout
71-
uses: actions/checkout@v3
71+
uses: actions/checkout@v4
7272

7373
# since jobs.id can't contain the dot character
7474
# it is hard to use `format` to assemble the cache key
@@ -199,7 +199,7 @@ jobs:
199199

200200
steps:
201201
- name: checkout
202-
uses: actions/checkout@v3
202+
uses: actions/checkout@v4
203203

204204
# only download llvm cache when needed
205205
- name: Get LLVM libraries
@@ -285,7 +285,7 @@ jobs:
285285
make_options_feature: "-DWAMR_BUILD_MINI_LOADER=1"
286286
steps:
287287
- name: checkout
288-
uses: actions/checkout@v3
288+
uses: actions/checkout@v4
289289

290290
- name: Install dependencies
291291
uses: nick-fields/retry@v2
@@ -347,7 +347,7 @@ jobs:
347347
sanitizer: asan
348348
steps:
349349
- name: checkout
350-
uses: actions/checkout@v3
350+
uses: actions/checkout@v4
351351

352352
- name: Get LLVM libraries
353353
id: retrieve_llvm_libs
@@ -414,7 +414,7 @@ jobs:
414414
llvm_cache_key: ${{ needs.build_llvm_libraries_on_ubuntu_2004.outputs.cache_key }}
415415
steps:
416416
- name: checkout
417-
uses: actions/checkout@v3
417+
uses: actions/checkout@v4
418418

419419
- name: download and install wasi-sdk
420420
run: |
@@ -601,7 +601,7 @@ jobs:
601601
test_option: $SIMD_TEST_OPTIONS
602602
steps:
603603
- name: checkout
604-
uses: actions/checkout@v3
604+
uses: actions/checkout@v4
605605

606606
- name: download and install wasi-sdk
607607
if: matrix.test_option == '$WASI_TEST_OPTIONS'

.github/workflows/release_process.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
outputs:
2929
upload_url: ${{ steps.create_release.outputs.upload_url }}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232

3333
- name: prepare the release note
3434
run: |

.github/workflows/reuse_latest_release_binaries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
outputs:
2929
result: ${{ steps.try_reuse.outputs.result }}
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
# Full git history is needed to get a proper list of commits and tags
3333
with:
3434
fetch-depth: 0

.github/workflows/spec_test_on_nuttx.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,21 @@ jobs:
9696

9797
steps:
9898
- name: Checkout NuttX
99-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
100100
with:
101101
repository: apache/incubator-nuttx
102102
ref: releases/12.4
103103
path: nuttx
104104

105105
- name: Checkout NuttX Apps
106-
uses: actions/checkout@v3
106+
uses: actions/checkout@v4
107107
with:
108108
repository: apache/incubator-nuttx-apps
109109
ref: releases/12.4
110110
path: apps
111111

112112
- name: Checkout WAMR
113-
uses: actions/checkout@v3
113+
uses: actions/checkout@v4
114114
with:
115115
repository: ${{ github.repository }}
116116
path: apps/interpreters/wamr/wamr

0 commit comments

Comments
 (0)