Skip to content

Commit 53e4a49

Browse files
authored
Merge branch 'bytecodealliance:main' into main
2 parents d6d52dd + 6253bd1 commit 53e4a49

File tree

103 files changed

+11142
-312
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

103 files changed

+11142
-312
lines changed

.github/workflows/build_docker_images.yml

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

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

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

.github/workflows/build_iwasm_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
contents: write # for uploading release artifacts
105105

106106
steps:
107-
- uses: actions/checkout@v4
107+
- uses: actions/checkout@v5
108108

109109
- name: get cached LLVM libraries
110110
id: retrieve_llvm_libs

.github/workflows/build_llvm_libraries.yml

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

4646
steps:
4747
- name: checkout
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949

5050
- name: install dependencies for non macos-14
5151
if: inputs.os != 'macos-14'

.github/workflows/build_wamr_lldb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
contents: write # for uploading release artifacts
5656

5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959

6060
- name: download and install wasi-sdk
6161
run: |

.github/workflows/build_wamr_sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
contents: write # for uploading release artifacts
4646

4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949

5050
- name: download wamr-app-framework
5151
run: |

.github/workflows/build_wamr_vscode_ext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
contents: write # for uploading release artifacts
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828

2929
- name: Use Node.js 18.x
3030
uses: actions/setup-node@v4

.github/workflows/build_wamr_wasi_extensions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
os: [ubuntu-22.04]
2929
steps:
3030
- name: checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232

3333
- name: install-wasi-sdk-wabt
3434
uses: ./.github/actions/install-wasi-sdk-wabt

.github/workflows/build_wamrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
contents: write # for uploading release artifacts
5050

5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353

5454
- name: get cached LLVM libraries
5555
id: retrieve_llvm_libs

.github/workflows/check_version_h.yml

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

1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: cmake execute to generate version.h
2020
run: cmake -B build_version -S .

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747

4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v5
5151
with:
5252
submodules: recursive
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL
56-
uses: github/codeql-action/[email protected].4
56+
uses: github/codeql-action/[email protected].11
5757
with:
5858
languages: ${{ matrix.language }}
5959

@@ -70,7 +70,7 @@ jobs:
7070
- run: |
7171
./.github/scripts/codeql_buildscript.sh
7272
- name: Perform CodeQL Analysis
73-
uses: github/codeql-action/[email protected].4
73+
uses: github/codeql-action/[email protected].11
7474
with:
7575
category: "/language:${{matrix.language}}"
7676
upload: false
@@ -99,7 +99,7 @@ jobs:
9999
output: ${{ steps.step1.outputs.sarif-output }}/cpp.sarif
100100

101101
- name: Upload CodeQL results to code scanning
102-
uses: github/codeql-action/[email protected].4
102+
uses: github/codeql-action/[email protected].11
103103
with:
104104
sarif_file: ${{ steps.step1.outputs.sarif-output }}
105105
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)