Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2.3.1 to 3 (#259)
Browse files Browse the repository at this point in the history
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](actions/upload-artifact@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] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored and alexmucde committed Apr 2, 2022
1 parent 726d975 commit e480b62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/BuildPR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e480b62

Please sign in to comment.