From 8bf40d23196a62127419c0e4065bfef2c3d30384 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Apr 2026 11:03:05 +0000 Subject: [PATCH] ci(dependabot): bump the actions group with 3 updates Bumps the actions group with 3 updates: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `pypa/cibuildwheel` from 3.3 to 3.4 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.3...v3.4) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: '3.4' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pypi.yml | 8 ++++---- .github/workflows/test.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 9122ef32..55fcec5e 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -29,9 +29,9 @@ jobs: fetch-depth: 0 - uses: astral-sh/setup-uv@v7 - name: Build wheels via cibuildwheel - uses: pypa/cibuildwheel@v3.3 + uses: pypa/cibuildwheel@v3.4 - name: Upload wheels artifacts - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: cibw-wheels-${{ runner.os }}-${{ runner.arch }} path: ./wheelhouse/*.whl @@ -47,12 +47,12 @@ jobs: steps: - name: Get sdist - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: Packages path: dist - name: Get wheels - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: pattern: cibw-wheels-* path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fcb194cb..0743946e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -82,7 +82,7 @@ jobs: run: uv run coverage run -p -m pytest -v - name: Upload coverage - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: covreport-${{ matrix.os }}-py${{ matrix.python-version }}-mypyc${{ matrix.compile }}-${{ matrix.qt }} path: ./.coverage*