@@ -41,28 +41,28 @@ jobs:
4141 CIBW_BUILD : ${{ matrix.py }}-*
4242 CIBW_ARCHS_LINUX : ${{ matrix.arch }}
4343 steps :
44- - uses : actions/checkout@v3
44+ - uses : actions/checkout@v4
4545 with :
4646 submodules : true
4747 fetch-depth : 0 # needed by setuptools_scm
4848
4949 - if : ${{ matrix.arch == 'aarch64' }}
5050 uses : docker/setup-qemu-action@v2
5151
52- - uses : pypa/cibuildwheel@v2.11.4
52+ - uses : pypa/cibuildwheel@v2.15.0
5353 env :
5454 CIBW_BUILD : ${{ matrix.py }}-*
5555 CIBW_ARCHS : ${{ matrix.arch }}
5656
57- - uses : actions/upload-artifact@v2
57+ - uses : actions/upload-artifact@v3
5858 with :
5959 path : ./wheelhouse/*.whl
6060
6161 sdist :
6262 name : source package
6363 runs-on : ubuntu-latest
6464 steps :
65- - uses : actions/checkout@v3
65+ - uses : actions/checkout@v4
6666 with :
6767 submodules : true
6868 fetch-depth : 0 # needed by setuptools_scm
7676 - run : python -m pip install -v $(echo dist/*)'[test]'
7777 - run : python -m pytest
7878
79- - uses : actions/upload-artifact@v2
79+ - uses : actions/upload-artifact@v3
8080 with :
8181 path : dist/*.tar.gz
8282
@@ -85,12 +85,12 @@ jobs:
8585 runs-on : ubuntu-latest
8686 if : github.event_name == 'push' && contains(github.event.ref, '/tags/')
8787 steps :
88- - uses : actions/download-artifact@v2
88+ - uses : actions/download-artifact@v3
8989 with :
9090 name : artifact
9191 path : dist
9292
93- - uses : pypa/gh-action-pypi-publish@release/v1
93+ - uses : pypa/gh-action-pypi-publish@release/v1.8
9494 with :
9595 user : __token__
9696 password : ${{secrets.pypi}}
0 commit comments