From ccb357a3f7fd092008d640bb4878c2b348af2fc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Apr 2026 20:13:53 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6 to 7.0.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-installers.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-installers.yaml b/.github/workflows/build-installers.yaml index 3bbf31a..89a145d 100644 --- a/.github/workflows/build-installers.yaml +++ b/.github/workflows/build-installers.yaml @@ -87,7 +87,7 @@ jobs: "$DMG_FILE" - name: Upload Mac Installer - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ env.APP_NAME }}-mac-installer path: ${{ github.workspace }}/dist/*.dmg @@ -158,7 +158,7 @@ jobs: file: "${{ github.workspace }}/${{ env.INSTALLER_FILE }}" - name: Upload Windows Installer - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ env.APP_NAME }}-windows-installer path: "${{ github.workspace }}/${{ env.INSTALLER_FILE }}" @@ -202,7 +202,7 @@ jobs: mv $ORIGINAL $MODIFIED - name: Upload Linux Installer - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ env.APP_NAME }}-linux-installer path: ${{ github.workspace }}/dist/*.deb @@ -241,7 +241,7 @@ jobs: run: tar -cvzf ${{ env.APP_NAME }}-web-build.tar.gz build - name: Upload build artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ env.APP_NAME }}-web-build path: ${{ env.APP_NAME }}-web-build.tar.gz