diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index ade60a1d..fa0a4866 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -34,7 +34,7 @@ jobs: fetch-depth: 0 - name: "Building ${{ matrix.os }} (${{ matrix.arch }}) wheels" - uses: pypa/cibuildwheel@v2.16.5 + uses: pypa/cibuildwheel@v2.17.0 env: # Skips pypy py36,37 CIBW_SKIP: "pp* cp36-* cp37-*" @@ -47,7 +47,7 @@ jobs: python -m pip install check-manifest cython pytest pytest-cov && python -m pytest -vv {package}/test - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: pypi-artifacts path: ${{ github.workspace }}/wheelhouse/*.whl @@ -64,7 +64,7 @@ jobs: pip install build && python -m build --sdist . --outdir dist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz @@ -73,7 +73,7 @@ jobs: name: "Show artifacts" runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: pypi-artifacts path: ${{ github.workspace }}/dist @@ -90,7 +90,7 @@ jobs: # upload to PyPI for every tag starting with 'v' if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: pypi-artifacts path: ${{ github.workspace }}/dist diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index a788ff9b..d7fc0aba 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -43,7 +43,7 @@ jobs: popd - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: docs/_build/html diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8fafd5bc..f9c18734 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.x diff --git a/.github/workflows/tests_latest.yml b/.github/workflows/tests_latest.yml index 3090bf03..7c9be34f 100644 --- a/.github/workflows/tests_latest.yml +++ b/.github/workflows/tests_latest.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }}