From 4a30dded4a698fc6ef4414b81c5ecb2f80e6974c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 07:23:23 +0000 Subject: [PATCH] build(deps): bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-upload.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-upload.yml b/.github/workflows/build-upload.yml index da225d2..221fdf2 100644 --- a/.github/workflows/build-upload.yml +++ b/.github/workflows/build-upload.yml @@ -138,7 +138,7 @@ jobs: CIBW_ENABLE: "${{ startsWith(github.ref, 'refs/tags/v') && '' || 'cpython-prerelease'}}" CIBW_PLATFORM: "${{ matrix.platform }}" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: "${{ (matrix.platform != 'pyodide') && 'pypi' || 'cibw' }}-wheels ${{ matrix.build || matrix.platform }} ${{ matrix.archs }}" path: ./wheelhouse/*.whl @@ -177,7 +177,7 @@ jobs: python -m pip install --group test pytest - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: pypi-sdist path: dist/*.tar.gz @@ -189,7 +189,7 @@ jobs: contents: read runs-on: ubuntu-24.04 steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: # unpacks all PyPI artifacts into dist/ pattern: pypi-* @@ -201,7 +201,7 @@ jobs: EXPECTED_WHEEL_COUNT=${{ startsWith(github.ref, 'refs/tags/v') && '214' || '214' }} test ${WHEEL_COUNT} -eq ${EXPECTED_WHEEL_COUNT} pipx run twine check --strict dist/* - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: # unpacks all non PyPI artifacts into nodist/ pattern: cibw-* @@ -225,7 +225,7 @@ jobs: permissions: id-token: write # trusted publishing + attestations steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: # unpacks all PyPI artifacts into dist/ pattern: pypi-* @@ -248,7 +248,7 @@ jobs: permissions: id-token: write # trusted publishing + attestations steps: - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 with: # unpacks all PyPI artifacts into dist/ pattern: pypi-*