Skip to content

Commit 596401a

Browse files
Bump actions/download-artifact from 4 to 5 (#139)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e83d491 commit 596401a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/Benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
components: clippy, rustfmt
4848

4949
- name: Download Wasm Modules
50-
uses: actions/download-artifact@v4
50+
uses: actions/download-artifact@v5
5151
with:
5252
name: guest-modules
5353
path: ./x64/${{ matrix.config }}

.github/workflows/CreateRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ jobs:
6666
if: ${{ contains(github.ref, 'refs/heads/release/') }}
6767
shell: bash
6868
- name: Download Wasm Modules
69-
uses: actions/download-artifact@v4
69+
uses: actions/download-artifact@v5
7070
with:
7171
name: guest-modules
7272
path: ${{ env.PLATFORM }}/${{ env.CONFIG }}
7373
- name: Build rust wasm modules
7474
run: just build-rust-wasm-examples ${{ env.CONFIG }}
7575
shell: bash
7676
- name: Download all benchmarks
77-
uses: actions/download-artifact@v4
77+
uses: actions/download-artifact@v5
7878
with:
7979
pattern: benchmarks_*
8080
- name: Archive benchmarks

.github/workflows/dep_rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: just build-wasm-runtime ${{ matrix.config }}
7373

7474
- name: Download Wasm Modules
75-
uses: actions/download-artifact@v4
75+
uses: actions/download-artifact@v5
7676
with:
7777
name: guest-modules
7878
path: ./x64/${{ matrix.config }}

0 commit comments

Comments
 (0)