diff --git a/.github/workflows/BuildPR.yml b/.github/workflows/BuildPR.yml index f8ed603f..981687d8 100644 --- a/.github/workflows/BuildPR.yml +++ b/.github/workflows/BuildPR.yml @@ -31,7 +31,7 @@ jobs: - name: Build project run: scripts/darwin/build.sh - name: Archive artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.1.2 if: ${{ success() }} with: name: DLTViewer-${{ matrix.macos }}-x86_64 @@ -56,7 +56,7 @@ jobs: - name: Make artifact executable run: chmod -R +x build/dist - name: Archive artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.1.2 if: ${{ success() }} with: name: DLTViewer-linux-x86_64 @@ -86,7 +86,7 @@ jobs: $env:CPACK_NSIS="true"; ./build_sdk_windows_qt5_MSVC_cmake.bat - name: Archive artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.1.2 if: ${{ success() }} with: name: DLTViewer-windows-x86_64 diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index b955f637..6dfa3a08 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -31,7 +31,7 @@ jobs: - name: Archive artifact run: zip DLT-macOS.zip -r build/release - name: Upload DLT artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.1.2 with: name: DLT-Mac path: DLT-macOS.zip @@ -57,7 +57,7 @@ jobs: - name: Archive artifact run: zip DLT-Linux.zip -r build/release - name: Upload DLT artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.1.2 with: name: DLT-Linux path: DLT-Linux.zip @@ -88,7 +88,7 @@ jobs: Compress-Archive -Path .\build\dist -DestinationPath DLT-Windows-${{ matrix.task }}.zip - name: Upload DLT artifact - uses: actions/upload-artifact@v2.3.1 + uses: actions/upload-artifact@v3.1.2 with: name: DLT-Windows-${{ matrix.task }} path: DLT-*.zip