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