From ffc400f03de855cdfd0b9a88b423bf09dacb626b Mon Sep 17 00:00:00 2001 From: Ian Lumsden Date: Tue, 4 Jun 2024 18:39:21 -0700 Subject: [PATCH] Fixes some versions that don't behave like every other actions --- .github/workflows/build_and_upload_wheels.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_and_upload_wheels.yaml b/.github/workflows/build_and_upload_wheels.yaml index 7b60b57e..397ebf37 100644 --- a/.github/workflows/build_and_upload_wheels.yaml +++ b/.github/workflows/build_and_upload_wheels.yaml @@ -25,7 +25,7 @@ jobs: with: platforms: all - - uses: pypa/cibuildwheel@v2 + - uses: pypa/cibuildwheel@v2.18 env: CIBW_SKIP: pp* *musllinux* CIBW_ARCHS_LINUX: auto aarch64 ppc64le @@ -97,7 +97,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1 + - uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.TEST_PYPI_API_TOKEN }} @@ -117,7 +117,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1 + - uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}