From e480b622fc55ba479a178871d95b59f45deda966 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 Apr 2022 18:54:39 +0200 Subject: [PATCH] Bump actions/upload-artifact from 2.3.1 to 3 (#259) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.3.1 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2.3.1...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/BuildPR.yml | 6 +++--- .github/workflows/Release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/BuildPR.yml b/.github/workflows/BuildPR.yml index f8ed603f..7ea0be8b 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 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 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 if: ${{ success() }} with: name: DLTViewer-windows-x86_64 diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index b955f637..843a2075 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 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 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 with: name: DLT-Windows-${{ matrix.task }} path: DLT-*.zip