From 5486e75ced8ab94748211570f4bf67a43a64de90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 22:01:45 +0000 Subject: [PATCH] build(deps): 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/create-release.yml | 4 ++-- .github/workflows/dev.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 7cddcd5..49de32e 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -190,7 +190,7 @@ jobs: - name: Upload build artifact (Windows) if: runner.os == 'Windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build path: | @@ -200,7 +200,7 @@ jobs: - name: Upload build artifact (Linux/macOS) if: runner.os != 'Windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build path: dist-final/${{ matrix.artifact_name }} diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index f18f4e2..d504830 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -195,7 +195,7 @@ jobs: - name: Upload build artifact (Windows) if: runner.os == 'Windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build path: | @@ -205,7 +205,7 @@ jobs: - name: Upload build artifact (Linux/macOS) if: runner.os != 'Windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build path: dist-final/${{ matrix.artifact_name }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9997bbe..7ae0de0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -170,7 +170,7 @@ jobs: - name: Upload artifact (Windows) if: runner.os == 'Windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build path: dist-final/${{ matrix.artifact_name }}.zip @@ -178,7 +178,7 @@ jobs: - name: Upload artifact (Linux/macOS) if: runner.os != 'Windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ matrix.os }}-build path: dist-final/${{ matrix.artifact_name }}