From 219f5b9dccfc959dcb5dcfb58033a90ae4bd2672 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:32:16 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 87fefe0455..0d5fc029e5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -78,7 +78,7 @@ jobs: - run: | mkdir -p ./doc mv ./repo/wasm-node/javascript/dist/doc/* ./doc - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: javascript-documentation path: ./doc/ @@ -99,7 +99,7 @@ jobs: - run: | mkdir -p ./doc mv ./repo/target/doc/* ./doc - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: rust-documentation path: ./doc/ @@ -126,7 +126,7 @@ jobs: `rustc --print sysroot`/lib/rustlib/x86_64-unknown-linux-gnu/bin/llvm-profdata merge -sparse ./coverage/default_*.profraw -o ./coverage/tests-coverage.profdata `rustc --print sysroot`/lib/rustlib/x86_64-unknown-linux-gnu/bin/llvm-cov show --format=html --output-dir=./html-out --instr-profile=./coverage/tests-coverage.profdata --ignore-filename-regex='cargo/registry' --ignore-filename-regex='/rustc/' --show-instantiations --show-line-counts-or-regions $(for file in `cat ./coverage/binaries-list`; do printf "%s %s " -object $file; done) `rustc --print sysroot`/lib/rustlib/x86_64-unknown-linux-gnu/bin/llvm-cov report --instr-profile=./coverage/tests-coverage.profdata --ignore-filename-regex='cargo/registry' --ignore-filename-regex='/rustc/' $(for file in `cat ./coverage/binaries-list`; do printf "%s %s " -object $file; done) - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: code-coverage-report path: ./html-out/ @@ -196,7 +196,7 @@ jobs: working-directory: ./wasm-node/javascript - name: Upload package artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: npm-package-${{ github.sha }} path: ./wasm-node/javascript/*.tgz