Skip to content

Commit

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

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 15, 2021
1 parent 83ad69a commit a3c77c3
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 @@ -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 }}
Expand All @@ -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 }}
Expand All @@ -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 }}
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.2.4
uses: actions/upload-artifact@v2.3.0
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.2.4
uses: actions/upload-artifact@v2.3.0
with:
name: DLT-Linux
path: DLT-Linux.zip
Expand All @@ -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
Expand Down

0 comments on commit a3c77c3

Please sign in to comment.