Skip to content

Commit b4e4c5a

Browse files
build(deps): Bump actions/checkout from 5 to 6 (#4726)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 85343e7 commit b4e4c5a

25 files changed

+47
-47
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@v5
29+
uses: actions/checkout@v6
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@v5
107+
- uses: actions/checkout@v6
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@v5
48+
uses: actions/checkout@v6
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@v5
58+
- uses: actions/checkout@v6
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@v5
48+
- uses: actions/checkout@v6
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@v5
27+
- uses: actions/checkout@v6
2828

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

.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@v5
31+
uses: actions/checkout@v6
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
@@ -41,7 +41,7 @@ jobs:
4141
contents: write # for uploading release artifacts
4242

4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545

4646
- name: get cached LLVM libraries
4747
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@v5
17+
uses: actions/checkout@v6
1818

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

.github/workflows/codeql.yml

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

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
with:
4848
submodules: recursive
4949

0 commit comments

Comments
 (0)