From 0a9e71dc73d9ef5c1b91096cf19a37f970c65a86 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 07:20:40 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish). Updates `pypa/cibuildwheel` from 2.21.3 to 2.22.0 - [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/v2.21.3...v2.22.0) Updates `pypa/gh-action-pypi-publish` from 1.11.0 to 1.12.2 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/v1.11.0...v1.12.2) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: pypa/gh-action-pypi-publish dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pre_release.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pre_release.yml b/.github/workflows/pre_release.yml index fcd0049..791e70d 100644 --- a/.github/workflows/pre_release.yml +++ b/.github/workflows/pre_release.yml @@ -166,7 +166,7 @@ jobs: python -m pip install tomlkit python bin/cibw-before-build.py - name: Build wheels - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v2.22.0 with: package-dir: . output-dir: wheelhouse @@ -214,7 +214,7 @@ jobs: twine check --strict dist-${{ matrix.platform }}-${{ matrix.python-version }}/* - name: Publish distribution to TestPyPI continue-on-error: true - uses: pypa/gh-action-pypi-publish@v1.11.0 + uses: pypa/gh-action-pypi-publish@v1.12.2 with: repository-url: https://test.pypi.org/legacy/ packages-dir: dist-${{ matrix.platform }}-${{ matrix.python-version }}/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c6bbc20..5ed907f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: - name: Install cbuild dependencies run: python -m pip install -r requirements/cbuild.txt - name: Build wheels - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v2.22.0 with: package-dir: . output-dir: wheelhouse @@ -113,7 +113,7 @@ jobs: mv release-cibw-wheels/* dist-${{ matrix.platform }}-${{ matrix.python-version }}/ twine check --strict dist-${{ matrix.platform }}-${{ matrix.python-version }}/* - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@v1.11.0 + uses: pypa/gh-action-pypi-publish@v1.12.2 with: packages-dir: dist-${{ matrix.platform }}-${{ matrix.python-version }}/ - name: Create GitHub Release