From c0550d9dd81f79454b69fbaf751127f6912b1119 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 09:36:49 +0000 Subject: [PATCH] chore(actions): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42c5511..616a0b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: # Upload artifacts - name: Upload Windows artifacts if: matrix.platform == 'win' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: windows-build path: | @@ -82,7 +82,7 @@ jobs: - name: Upload macOS artifacts if: matrix.platform == 'mac' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: macos-build path: | @@ -93,7 +93,7 @@ jobs: - name: Upload Linux artifacts if: matrix.platform == 'linux' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: linux-build path: |