From 3ad64db41e7d7a3965244225ffc4be36494b1096 Mon Sep 17 00:00:00 2001 From: DogmaDragon <103123951+DogmaDragon@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:23:08 +0300 Subject: [PATCH] Update deprecated upload-artifact actions (#817) v2 is deprecated https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e4f6952..7a85cf0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -126,14 +126,14 @@ jobs: - name: Upload Windows binary # only upload binaries for pull requests if: ${{ github.event_name == 'pull_request' && github.base_ref != 'refs/heads/master'}} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: stash-box-win.exe path: dist/stash-box-windows.exe - name: Upload Linux binary # only upload binaries for pull requests if: ${{ github.event_name == 'pull_request' && github.base_ref != 'refs/heads/master'}} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: stash-box-linux path: dist/stash-box-linux