From f54304634913b9b7c8bd2d82d07a261df499ad9f Mon Sep 17 00:00:00 2001 From: Ian McKenzie <13459320+ikmckenz@users.noreply.github.com> Date: Sun, 15 Sep 2024 17:12:09 -0700 Subject: [PATCH] Update upload-artifact action to pass build (#5260) --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 02a5d973e..f424ef5d5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -113,7 +113,7 @@ jobs: - name: Upload Windows binary # only upload binaries for pull requests if: ${{ github.event_name == 'pull_request' && github.base_ref != 'refs/heads/develop' && github.base_ref != 'refs/heads/master'}} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: stash-win.exe path: dist/stash-win.exe @@ -121,7 +121,7 @@ jobs: - name: Upload macOS binary # only upload binaries for pull requests if: ${{ github.event_name == 'pull_request' && github.base_ref != 'refs/heads/develop' && github.base_ref != 'refs/heads/master'}} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: stash-macos path: dist/stash-macos @@ -129,7 +129,7 @@ jobs: - name: Upload Linux binary # only upload binaries for pull requests if: ${{ github.event_name == 'pull_request' && github.base_ref != 'refs/heads/develop' && github.base_ref != 'refs/heads/master'}} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: stash-linux path: dist/stash-linux @@ -137,7 +137,7 @@ jobs: - name: Upload UI # only upload for pull requests if: ${{ github.event_name == 'pull_request' && github.base_ref != 'refs/heads/develop' && github.base_ref != 'refs/heads/master'}} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: stash-ui.zip path: dist/stash-ui.zip