Skip to content

Commit

Permalink
Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 18, 2023
1 parent d71cd2a commit bac52ed
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 @@ -33,7 +33,7 @@ jobs:
- name: Build project
run: scripts/darwin/build.sh
- name: Archive artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ success() }}
with:
name: DLTViewer-${{ matrix.macos }}-x86_64
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Make artifact executable
run: chmod -R +x build/dist
- name: Archive artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ success() }}
with:
name: DLTViewer-linux-x86_64
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
$env:CPACK_NSIS="true";
./build_sdk_windows_qt5_MSVC_cmake.bat
- name: Archive artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
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 @@ -32,7 +32,7 @@ jobs:
- name: Archive artifact
run: zip DLT-macOS.zip -r build/dist
- name: Upload DLT artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DLT-Mac
path: DLT-macOS.zip
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Archive artifact
run: zip DLT-Linux.zip -r build/dist
- name: Upload DLT artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DLT-Linux
path: DLT-Linux.zip
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
Compress-Archive -Path .\build\dist -DestinationPath
DLT-Windows-${{ matrix.task }}.zip
- name: Upload DLT artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: DLT-Windows-${{ matrix.task }}
path: DLT-*.zip
Expand Down

0 comments on commit bac52ed

Please sign in to comment.