From 827acd9cb00255662954cc36b5a90f6dbe5ba54f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Apr 2026 09:06:04 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ec8dc2172..66dfeef47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,11 +52,11 @@ jobs: if: matrix.type == 'ubuntu-x64' run: | tar czf ${{ matrix.name }}.tar.gz -C target/x86_64-unknown-linux-musl/release rustscan - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ matrix.name }} path: ${{ matrix.path }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 if: matrix.type == 'ubuntu-x64' with: name: ${{ matrix.name }}.tar.gz @@ -79,7 +79,7 @@ jobs: - name: Deb Build run: cargo deb --target=x86_64-unknown-linux-musl - name: Upload Deb Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: rustscan.deb path: ./target/x86_64-unknown-linux-musl/debian/* @@ -104,11 +104,11 @@ jobs: - name: Build tar.gz for homebrew installs run: | tar czf x86_64-macos-rustscan.tar.gz -C target/x86_64-apple-darwin/release rustscan - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: x86_64-macos-rustscan path: target/x86_64-apple-darwin/release/rustscan - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: x86_64-macos-rustscan.tar.gz path: x86_64-macos-rustscan.tar.gz @@ -133,11 +133,11 @@ jobs: - name: Build tar.gz for homebrew installs run: | tar czf aarch64-macos-rustscan.tar.gz -C target/aarch64-apple-darwin/release rustscan - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: aarch64-macos-rustscan path: target/aarch64-apple-darwin/release/rustscan - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: aarch64-macos-rustscan.tar.gz path: aarch64-macos-rustscan.tar.gz @@ -173,7 +173,7 @@ jobs: args: "--locked --release" strip: true toolchain: stable - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: ${{ matrix.name }} path: ${{ matrix.path }}