diff --git a/.github/workflows/autobuild.yml b/.github/workflows/autobuild.yml index 39093f8..6e98564 100644 --- a/.github/workflows/autobuild.yml +++ b/.github/workflows/autobuild.yml @@ -339,7 +339,7 @@ jobs: - name: Upload Artifact 1 to Job # builds such as iOS with signing produce no artifact to upload if: steps.get-artifacts.outputs.artifact_1 - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.get-artifacts.outputs.artifact_1 }} path: deploy/${{ steps.get-artifacts.outputs.artifact_1 }} diff --git a/.github/workflows/qt_mac_posix_build.yml b/.github/workflows/qt_mac_posix_build.yml index 3e98680..71a32aa 100644 --- a/.github/workflows/qt_mac_posix_build.yml +++ b/.github/workflows/qt_mac_posix_build.yml @@ -37,7 +37,7 @@ jobs: run: ./.github/autobuild/qt_macos_posix.sh get-artifacts - name: Upload Artifact 1 to Job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.get-artifacts.outputs.artifact_1 }} path: deploy/${{ steps.get-artifacts.outputs.artifact_1 }} diff --git a/.github/workflows/secrets.yml b/.github/workflows/secrets.yml index 7e43707..2cbfb0e 100644 --- a/.github/workflows/secrets.yml +++ b/.github/workflows/secrets.yml @@ -83,7 +83,7 @@ jobs: echo "artifact=secrets.txt" >> "$GITHUB_OUTPUT" - name: Upload Artifact to Job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.artifact-getter.outputs.artifact }} path: ${{ steps.artifact-getter.outputs.artifact }} diff --git a/.github/workflows/webview_buildjars.yml b/.github/workflows/webview_buildjars.yml index ce1cca7..27d49b2 100644 --- a/.github/workflows/webview_buildjars.yml +++ b/.github/workflows/webview_buildjars.yml @@ -37,7 +37,7 @@ jobs: run: ./.github/autobuild/webview_jars.sh get-artifacts - name: Upload Artifact 1 to Job - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ${{ steps.get-artifacts.outputs.artifact_1 }} path: deploy/${{ steps.get-artifacts.outputs.artifact_1 }} @@ -45,7 +45,7 @@ jobs: if-no-files-found: error # - name: Upload Artifact 2 to Job - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v3 # with: # name: ${{ steps.get-artifacts.outputs.artifact_2 }} # path: deploy/${{ steps.get-artifacts.outputs.artifact_2 }} @@ -53,7 +53,7 @@ jobs: # if-no-files-found: error # - name: Upload Artifact 3 to Job - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v3 # with: # name: ${{ steps.get-artifacts.outputs.artifact_3 }} # path: deploy/${{ steps.get-artifacts.outputs.artifact_3 }} @@ -61,7 +61,7 @@ jobs: # if-no-files-found: error # - name: Upload Artifact 4 to Job - # uses: actions/upload-artifact@v2 + # uses: actions/upload-artifact@v3 # with: # name: ${{ steps.get-artifacts.outputs.artifact_4 }} # path: deploy/${{ steps.get-artifacts.outputs.artifact_4 }}