From 36081fd6ebdf46983bcc45cdad34c928238e3d5a Mon Sep 17 00:00:00 2001 From: epi Date: Sat, 14 Sep 2024 14:16:13 -0400 Subject: [PATCH] updated AU to v4 for build pipeline; test 1 --- .github/workflows/build.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f93f59cf..8549a7ce 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,11 +63,11 @@ jobs: if: matrix.type == 'ubuntu-x64' run: | tar czf ${{ matrix.name }}.tar.gz -C target/x86_64-unknown-linux-musl/release feroxbuster - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }} path: ${{ matrix.path }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: matrix.type == 'ubuntu-x64' with: name: ${{ matrix.name }}.tar.gz @@ -97,7 +97,7 @@ jobs: use-cross: true command: build args: --target=x86_64-unknown-linux-musl - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: x86_64-linux-debug-feroxbuster path: target/x86_64-unknown-linux-musl/debug/feroxbuster @@ -120,7 +120,7 @@ jobs: - name: Deb Build run: cargo deb --target=x86_64-unknown-linux-musl - name: Upload Deb Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: feroxbuster_amd64.deb path: ./target/x86_64-unknown-linux-musl/debian/* @@ -148,11 +148,11 @@ jobs: - name: Build tar.gz for homebrew installs run: | tar czf x86_64-macos-feroxbuster.tar.gz -C target/x86_64-apple-darwin/release feroxbuster - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: x86_64-macos-feroxbuster path: target/x86_64-apple-darwin/release/feroxbuster - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: x86_64-macos-feroxbuster.tar.gz path: x86_64-macos-feroxbuster.tar.gz @@ -180,11 +180,11 @@ jobs: - name: Build tar.gz for homebrew installs run: | tar czf aarch64-macos-feroxbuster.tar.gz -C target/aarch64-apple-darwin/release feroxbuster - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: aarch64-macos-feroxbuster path: target/aarch64-apple-darwin/release/feroxbuster - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: aarch64-macos-feroxbuster.tar.gz path: aarch64-macos-feroxbuster.tar.gz @@ -220,7 +220,7 @@ jobs: use-cross: true command: build args: --release --target=${{ matrix.target }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.name }} path: ${{ matrix.path }}