From c14a1d9c709898f10123bd67077e2ca85b9e38c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Mar 2026 06:09:52 +0000 Subject: [PATCH] ci(deps): bump actions/download-artifact from 4 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9062e1e..254a7bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -161,7 +161,7 @@ jobs: restore-keys: m2-test- - name: Download native library - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-${{ matrix.platform }} path: wamr4j-native/src/main/resources/META-INF/native/${{ matrix.platform }}/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b91ed53..e212e3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -121,7 +121,7 @@ jobs: restore-keys: m2-test- - name: Download native library - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-${{ matrix.platform }} path: wamr4j-native/src/main/resources/META-INF/native/${{ matrix.platform }}/ @@ -182,7 +182,7 @@ jobs: restore-keys: m2-quality- - name: Download native library - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-linux-x86_64 path: wamr4j-native/src/main/resources/META-INF/native/linux-x86_64/ @@ -261,22 +261,22 @@ jobs: # Download all native libraries into resource directories - name: Download linux-x86_64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-linux-x86_64 path: wamr4j-native/src/main/resources/META-INF/native/linux-x86_64/ - name: Download linux-aarch64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-linux-aarch64 path: wamr4j-native/src/main/resources/META-INF/native/linux-aarch64/ - name: Download darwin-aarch64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-darwin-aarch64 path: wamr4j-native/src/main/resources/META-INF/native/darwin-aarch64/ - name: Download windows-x86_64 - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: native-windows-x86_64 path: wamr4j-native/src/main/resources/META-INF/native/windows-x86_64/