From 2a0084c40e14c07c0fc03d1f6e3551984e5f2d82 Mon Sep 17 00:00:00 2001 From: bnjmnp Date: Sat, 11 Nov 2023 21:33:47 +0100 Subject: [PATCH] CI/CD: Use latest GitHub action versions for cibuildwheel and gh-action-pypi-publish --- .../manual_triggerd_build_and_upload_to_test_pypi.yml | 4 ++-- .../workflows/release_triggerd_build_and_upload_to_pypi.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/manual_triggerd_build_and_upload_to_test_pypi.yml b/.github/workflows/manual_triggerd_build_and_upload_to_test_pypi.yml index 5d38acf..32561eb 100644 --- a/.github/workflows/manual_triggerd_build_and_upload_to_test_pypi.yml +++ b/.github/workflows/manual_triggerd_build_and_upload_to_test_pypi.yml @@ -18,7 +18,7 @@ jobs: submodules: recursive - name: Build wheels - uses: pypa/cibuildwheel@v2.12.1 + uses: pypa/cibuildwheel@v2.16.2 - uses: actions/upload-artifact@v3 with: @@ -49,7 +49,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1.5.0 + - uses: pypa/gh-action-pypi-publish@v1.8.10 with: user: __token__ password: ${{ secrets.TEST_PYPI_PYSOEM_ACCESS_TOKEN }} diff --git a/.github/workflows/release_triggerd_build_and_upload_to_pypi.yml b/.github/workflows/release_triggerd_build_and_upload_to_pypi.yml index b86d91e..a8601bd 100644 --- a/.github/workflows/release_triggerd_build_and_upload_to_pypi.yml +++ b/.github/workflows/release_triggerd_build_and_upload_to_pypi.yml @@ -12,7 +12,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019] + os: [ubuntu-20.04, windows-2019, macos-12] steps: - uses: actions/checkout@v3 @@ -20,7 +20,7 @@ jobs: submodules: recursive - name: Build wheels - uses: pypa/cibuildwheel@v2.12.1 + uses: pypa/cibuildwheel@v2.16.2 - uses: actions/upload-artifact@v3 with: @@ -51,7 +51,7 @@ jobs: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@v1.5.0 + - uses: pypa/gh-action-pypi-publish@v1.8.10 with: user: __token__ password: ${{ secrets.PYPI_PYSOEM_ACCESS_TOKEN }} \ No newline at end of file