From bcf01d92ea56570881d55c8f8986f91f88a6b020 Mon Sep 17 00:00:00 2001 From: jklingen Date: Fri, 3 Jan 2025 16:41:14 +0100 Subject: [PATCH] Update artifact action to v4 --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c43efcdd3..c5d07661d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: Copy-Item -Path "$(Build.SourcesDirectory)\installer\Greenshot-INSTALLER-*.exe" -Destination "${{ github.workspace }}/drop" -Force - name: Publish Artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: drop path: ${{ github.workspace }}/drop/*.exe @@ -55,7 +55,7 @@ jobs: needs: build steps: - name: Download Artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: drop @@ -69,4 +69,3 @@ jobs: files: ${{ github.workspace }}/drop/*.exe env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -