1818]
1919
2020steps :
21- -uses :actions/checkout@v4
21+ -uses :actions/checkout@v6
2222with :
2323submodules :true
2424
@@ -28,22 +28,22 @@ jobs:
2828 python3 -c "import pathlib,glob;pathlib.Path('GITHUB_ENV').write_text('SDIST_PATH' + glob.glob('dist/*.tar.gz')[0])"
2929
3030 -name :Build wheels
31- uses :pypa/cibuildwheel@v3.2.1
31+ uses :pypa/cibuildwheel@v3.3.0
3232env :
3333CIBW_BUILD :" cp39-* cp310-* cp311-* cp312-* cp313-* cp314-* pp311-*"
3434with :
3535package-dir :" $SDIST_PATH"
3636
3737 -name :Upload wheel artifacts
38- uses :actions/upload-artifact@v4
38+ uses :actions/upload-artifact@v5
3939if :${{ github.ref == 'refs/heads/master'}}
4040with :
4141name :cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
4242path :./wheelhouse/*.whl
4343retention-days :7
4444
4545 -name :Upload sdist artifact
46- uses :actions/upload-artifact@v4
46+ uses :actions/upload-artifact@v5
4747if :${{ github.ref == 'refs/heads/master' && matrix.os ==
4848' windows-latest' }}
4949with :
@@ -55,13 +55,13 @@ jobs:
5555name :Build wheels for wasm / emscripten
5656runs-on :ubuntu-22.04
5757steps :
58- -uses :actions/checkout@v4
58+ -uses :actions/checkout@v6
5959with :
6060submodules :true
61- -uses :pypa/cibuildwheel@v3.2.1
61+ -uses :pypa/cibuildwheel@v3.3.0
6262env :
6363CIBW_PLATFORM :pyodide
64- -uses :actions/upload-artifact@v4
64+ -uses :actions/upload-artifact@v5
6565if :${{ github.ref == 'refs/heads/master' }}
6666with :
6767name :cibw-wheels-pyodide-${{ matrix.os }}-${{ strategy.job-index }}
@@ -73,14 +73,14 @@ jobs:
7373runs-on :macos-latest
7474steps :
7575 -name :Checkout
76- uses :actions/checkout@v4
76+ uses :actions/checkout@v6
7777with :
7878submodules :true
7979 -run :brew upgrade cmake --formula
80- -uses :pypa/cibuildwheel@v3.2.1
80+ -uses :pypa/cibuildwheel@v3.3.0
8181env :
8282CIBW_PLATFORM :ios
83- -uses :actions/upload-artifact@v4
83+ -uses :actions/upload-artifact@v5
8484if :${{ github.ref == 'refs/heads/master' }}
8585with :
8686name :cibw-wheels-ios-${{ matrix.os }}-${{ strategy.job-index }}