From f8af62165e5ebace66e18066773138df8d6d4231 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 14:57:46 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [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' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/electron-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/electron-build.yml b/.github/workflows/electron-build.yml index 8c6d8ffe..c7f24371 100644 --- a/.github/workflows/electron-build.yml +++ b/.github/workflows/electron-build.yml @@ -83,7 +83,7 @@ jobs: # macOS: Upload DMG and ZIP artifacts (GUI), ZIP only for CLI - name: Upload macOS artifacts if: matrix.platform == 'darwin' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: | @@ -96,7 +96,7 @@ jobs: # Windows: Upload Squirrel installer, ZIP, and CLI artifacts - name: Upload Windows artifacts if: matrix.platform == 'win32' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: | @@ -109,7 +109,7 @@ jobs: # Linux: Upload DEB, RPM, and CLI artifacts - name: Upload Linux artifacts if: matrix.platform == 'linux' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.artifact_name }} path: |