Skip to content

Commit

Permalink
upgrade action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Sep 4, 2023
1 parent 75b46cb commit 11f4694
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,28 +41,28 @@ jobs:
CIBW_BUILD: ${{ matrix.py }}-*
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0 # needed by setuptools_scm

- if: ${{ matrix.arch == 'aarch64' }}
uses: docker/setup-qemu-action@v2

- uses: pypa/cibuildwheel@v2.11.4
- uses: pypa/cibuildwheel@v2.15.0
env:
CIBW_BUILD: ${{ matrix.py }}-*
CIBW_ARCHS: ${{ matrix.arch }}

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

sdist:
name: source package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0 # needed by setuptools_scm
Expand All @@ -76,7 +76,7 @@ jobs:
- run: python -m pip install -v $(echo dist/*)'[test]'
- run: python -m pytest

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -85,12 +85,12 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.event.ref, '/tags/')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist

- uses: pypa/gh-action-pypi-publish@release/v1
- uses: pypa/gh-action-pypi-publish@release/v1.8
with:
user: __token__
password: ${{secrets.pypi}}

0 comments on commit 11f4694

Please sign in to comment.