diff --git a/.github/workflows/pre_release.yml b/.github/workflows/pre_release.yml index fcd0049..63ac701 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.3 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..f5f0a6b 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.3 with: packages-dir: dist-${{ matrix.platform }}-${{ matrix.python-version }}/ - name: Create GitHub Release