From 1a9f6886a39898253c3bad7b898371b80ebd2475 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 05:17:04 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6f6caf0..2739ea5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -106,7 +106,7 @@ jobs: sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning] manylinux: auto - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }}-${{ matrix.target }} path: dist @@ -148,7 +148,7 @@ jobs: manylinux: musllinux_1_2 sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning] - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }}-${{ matrix.target }} path: dist @@ -185,7 +185,7 @@ jobs: args: --release --out dist --interpreter '3.10 3.11 3.12 3.13 3.14' --interpreter ${{ matrix.target == 'x64' && 'pypy3.10' || '' }} sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning] - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }}-${{ matrix.target }} path: dist @@ -243,7 +243,7 @@ jobs: args: --release --out dist --interpreter ${{ steps.cp311.outputs.python-path }} ${{ steps.cp312.outputs.python-path }} ${{ steps.cp313.outputs.python-path }} ${{ steps.cp314.outputs.python-path }} sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning] - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }}-${{ matrix.target }} path: dist @@ -277,7 +277,7 @@ jobs: args: --release --out dist --interpreter '3.13t 3.14t' sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning] - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }}-${{ matrix.target }}-free-threaded path: dist @@ -315,7 +315,7 @@ jobs: args: --release --out dist --interpreter '3.10 3.11 3.12 3.13 3.13t 3.14 3.14t pypy3.10 pypy3.11' sccache: ${{ github.ref_type != 'tag' }} # zizmor: ignore[cache-poisoning] - name: Upload wheels - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }}-${{ matrix.target }} path: dist @@ -336,7 +336,7 @@ jobs: command: sdist args: --out dist - name: Upload sdist - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: dist-${{ github.job }} path: dist