From c19bb1dfe8c293840df4793482aba99b3b4deb1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 04:18:25 +0000 Subject: [PATCH] [CI]: 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/dist.yml | 6 +++--- .github/workflows/pr-regression-test-bot.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index 6666871..f22891b 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -92,7 +92,7 @@ jobs: - name: Upload SDist # Not PR to save artifact storage, as SDist is only needed for releases. if: github.event_name != 'pull_request' || contains(github.event.pull_request.title, '[Release]') - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: sdist path: dist/*.tar.gz @@ -168,7 +168,7 @@ jobs: - name: Upload wheels # Not PR to save artifact storage, as wheels are only needed for releases. if: github.event_name != 'pull_request' || contains(github.event.pull_request.title, '[Release]') - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: wheels-${{ matrix.python-version }}-${{ runner.os }}-${{ runner.arch }}-${{ matrix.target.toolkit }} path: wheelhouse/*.whl @@ -201,7 +201,7 @@ jobs: run: ls -lh dist/* - name: Upload artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: artifacts path: dist/* diff --git a/.github/workflows/pr-regression-test-bot.yml b/.github/workflows/pr-regression-test-bot.yml index 59ce74a..303f138 100644 --- a/.github/workflows/pr-regression-test-bot.yml +++ b/.github/workflows/pr-regression-test-bot.yml @@ -85,7 +85,7 @@ jobs: echo "EOF" >> $GITHUB_OUTPUT - name: Upload result image as artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: perf-regression-${{ github.run_id }} path: regression_result.png