@@ -27,11 +27,11 @@ jobs:
2727 build : " *musllinux*"
2828
2929 steps :
30- - uses : actions/checkout@v4
30+ - uses : actions/checkout@v5
3131 if : ${{ github.event_name != 'repository_dispatch' }}
3232 with :
3333 fetch-depth : 0 # slow, but gets all the tags
34- - uses : actions/checkout@v4
34+ - uses : actions/checkout@v5
3535 if : ${{ github.event_name == 'repository_dispatch' }}
3636 with :
3737 fetch-depth : 0 # slow, but gets all the tags
4444 # platforms: all
4545
4646 - name : Build wheels
47- uses : pypa/cibuildwheel@v2.23.2
47+ uses : pypa/cibuildwheel@v3.1
4848 env :
4949 CIBW_BUILD : ${{ matrix.build }}
5050 CIBW_MANYLINUX_X86_64_IMAGE : quay.io/pypa/${{ matrix.image }}
@@ -63,11 +63,11 @@ jobs:
6363 name : Build source distribution
6464 runs-on : ubuntu-24.04
6565 steps :
66- - uses : actions/checkout@v4
66+ - uses : actions/checkout@v5
6767 if : ${{ github.event_name != 'repository_dispatch' }}
6868 with :
6969 fetch-depth : 0 # slow, but gets all the tags
70- - uses : actions/checkout@v4
70+ - uses : actions/checkout@v5
7171 if : ${{ github.event_name == 'repository_dispatch' }}
7272 with :
7373 fetch-depth : 0 # slow, but gets all the tags
@@ -89,18 +89,18 @@ jobs:
8989 # macos-13 is an intel runner, macos-14 is apple silicon
9090 os : [macos-13, macos-14]
9191 steps :
92- - uses : actions/checkout@v4
92+ - uses : actions/checkout@v5
9393 if : ${{ github.event_name != 'repository_dispatch' }}
9494 with :
9595 fetch-depth : 0 # slow, but gets all the tags
96- - uses : actions/checkout@v4
96+ - uses : actions/checkout@v5
9797 if : ${{ github.event_name == 'repository_dispatch' }}
9898 with :
9999 fetch-depth : 0 # slow, but gets all the tags
100100 ref : ${{ github.event.client_payload.ref }}
101101
102102 - name : Build wheels
103- uses : pypa/cibuildwheel@v2.23.2
103+ uses : pypa/cibuildwheel@v3.1
104104
105105 - uses : actions/upload-artifact@v4
106106 with :
@@ -115,7 +115,7 @@ jobs:
115115 id-token : write
116116 if : (github.event_name == 'release' && github.event.action == 'published') || (github.event_name == 'repository_dispatch' && github.event.client_payload.publish_wheel == true)
117117 steps :
118- - uses : actions/download-artifact@v4
118+ - uses : actions/download-artifact@v5
119119 with :
120120 # unpacks default artifact into dist/
121121 pattern : artifact-*
0 commit comments