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 and dail8859 committed Jan 3, 2024
1 parent 84f7511 commit 1f70073
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,28 +107,28 @@ jobs:
make appimage
- name: Upload Windows zip Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: NotepadNext-Windows-Qt${{ matrix.config.qt_version }}-Zip
path: ${{ github.workspace }}/build/package/

- name: Upload Windows Installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: runner.os == 'Windows'
with:
name: NotepadNext-Windows-Qt${{ matrix.config.qt_version }}-Installer
path: ${{ github.workspace }}/installer/NotepadNext*.exe

- name: Upload macOS dmg
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: runner.os == 'macOS'
with:
name: NotepadNext-macOS-Qt${{ matrix.config.qt_version }}
path: ${{ github.workspace }}/build/NotepadNext/NotepadNext*.dmg

- name: Upload Linux AppImage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: runner.os == 'Linux'
with:
name: NotepadNext-Linux-Qt${{ matrix.config.qt_version }}-AppImage
Expand Down

0 comments on commit 1f70073

Please sign in to comment.