From a3c77c3d9bd7523d8dc4f6401109d29f973b01ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Dec 2021 16:23:21 +0100 Subject: [PATCH] Bump actions/upload-artifact from 2.2.4 to 2.3.0 (#233) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.2.4 to 2.3.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2.2.4...v2.3.0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... 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 ddb92145..2fcfc823 100644 --- a/.github/workflows/BuildPR.yml +++ b/.github/workflows/BuildPR.yml @@ -32,7 +32,7 @@ jobs: - name: Build project run: scripts/build.sh - name: Archive artifact - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v2.3.0 if: ${{ success() }} with: name: DLT-macOS-${{ matrix.xcode }} @@ -57,7 +57,7 @@ jobs: - name: Make artifact executable run: chmod -R +x build/release - name: Archive artifact - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v2.3.0 if: ${{ success() }} with: name: DLT-${{ matrix.ubuntu }} @@ -82,7 +82,7 @@ jobs: - name: Build ${{ matrix.task }} run: $env:WORKSPACE=$env:GITHUB_WORKSPACE; $env:QTDIR=$env:Qt5_DIR.Replace('/','\'); ./build_${{ matrix.task }}_windows_qt5_MSVC.bat - name: Archive artifact - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v2.3.0 if: ${{ success() }} with: name: DLT-Windows-${{ matrix.task }} diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index c116b044..84c9eb47 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.2.4 + uses: actions/upload-artifact@v2.3.0 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.2.4 + uses: actions/upload-artifact@v2.3.0 with: name: DLT-Linux path: DLT-Linux.zip @@ -84,7 +84,7 @@ jobs: - name: Archive artifact run: Compress-Archive -Path .\build\dist -DestinationPath DLT-Windows-${{ matrix.task }}.zip - name: Upload DLT artifact - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v2.3.0 with: name: DLT-Windows-${{ matrix.task }} path: DLT-*.zip