@@ -43,14 +43,14 @@ jobs:
4343 arch : " AMD64"
4444
4545 steps :
46- - uses : actions/checkout@v5
46+ - uses : actions/checkout@v6
4747 with :
4848 fetch-depth : 0
4949
5050 - name : " build ${{ matrix.os }} (${{ matrix.arch }}) wheels"
51- uses : pypa/cibuildwheel@v3.3.0
51+ uses : pypa/cibuildwheel@v3.3.1
5252 env :
53- CIBW_SKIP : " cp39-* cp310-* cp314 -* pp* *-musllinux*"
53+ CIBW_SKIP : " cp39-* cp310-* cp311 -* pp* *-musllinux*"
5454 CIBW_ARCHS : ${{ matrix.arch }}
5555 CIBW_BUILD_FRONTEND : " build"
5656 CIBW_MANYLINUX_X86_64_IMAGE : " manylinux2014"
5959 CIBW_TEST_COMMAND : >
6060 python -m pytest --pyargs stratify
6161
62- - uses : actions/upload-artifact@v5
62+ - uses : actions/upload-artifact@v6
6363 with :
6464 name : pypi-${{ matrix.os }}-${{ matrix.arch }}-artifact
6565 path : ${{ github.workspace }}/wheelhouse/*.whl
6969 name : " Build sdist"
7070 runs-on : ubuntu-latest
7171 steps :
72- - uses : actions/checkout@v5
72+ - uses : actions/checkout@v6
7373 with :
7474 fetch-depth : 0
7575
7878 run : |
7979 pipx run build --sdist
8080
81- - uses : actions/upload-artifact@v5
81+ - uses : actions/upload-artifact@v6
8282 with :
8383 name : pypi-sdist
8484 path : ${{ github.workspace }}/dist/*.tar.gz
8989 name : " Show artifacts"
9090 runs-on : ubuntu-latest
9191 steps :
92- - uses : actions/download-artifact@v6
92+ - uses : actions/download-artifact@v7
9393 with :
9494 merge-multiple : true
9595 path : ${{ github.workspace }}/dist
@@ -106,7 +106,7 @@ jobs:
106106 # upload to Test PyPI for every commit on main branch
107107 if : github.event_name == 'push' && github.event.ref == 'refs/heads/main'
108108 steps :
109- - uses : actions/download-artifact@v6
109+ - uses : actions/download-artifact@v7
110110 with :
111111 merge-multiple : true
112112 path : ${{ github.workspace }}/dist
@@ -127,7 +127,7 @@ jobs:
127127 # upload to PyPI for every tag starting with 'v'
128128 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
129129 steps :
130- - uses : actions/download-artifact@v6
130+ - uses : actions/download-artifact@v7
131131 with :
132132 merge-multiple : true
133133 path : ${{ github.workspace }}/dist
0 commit comments