From 0fff8d8b0a73412cfc3584d5464b64f34d1d6a7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Dec 2025 00:26:01 +0000 Subject: [PATCH] chore(actions): bump actions/upload-artifact from 4 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' 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 1a4ef8e..8ba05ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: # Upload artifacts - name: Upload Windows artifacts if: matrix.platform == 'win' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: windows-build path: | @@ -80,7 +80,7 @@ jobs: - name: Upload macOS artifacts if: matrix.platform == 'mac' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: macos-build path: | @@ -91,7 +91,7 @@ jobs: - name: Upload Linux artifacts if: matrix.platform == 'linux' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: linux-build path: |