From 8dc04839cd6e4f6d4c9861ed6f5f06c9d90d6952 Mon Sep 17 00:00:00 2001 From: PaulZC Date: Mon, 3 Mar 2025 09:14:57 +0000 Subject: [PATCH] Update build-and-release.yml --- .github/workflows/build-and-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 4aacdd1..b6850f6 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -39,16 +39,16 @@ jobs: needs: [call-macos-build, call-linux-build, call-windows-build, call-python-build] steps: # Download the generated app files that are part of the release - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ needs.call-macos-build.outputs.build-file }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ needs.call-linux-build.outputs.build-file }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ needs.call-windows-build.outputs.build-file }} - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: ${{ needs.call-python-build.outputs.build-file }} - name: Output Listing