Skip to content

Commit f3c3b38

Browse files
committed
Update github actions deps
1 parent b71cee8 commit f3c3b38

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/wheels.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
]
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
with:
2323
submodules: 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
3232
env:
3333
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-* pp311-*"
3434
with:
3535
package-dir: "$SDIST_PATH"
3636

3737
- name: Upload wheel artifacts
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
if: ${{ github.ref == 'refs/heads/master'}}
4040
with:
4141
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
4242
path: ./wheelhouse/*.whl
4343
retention-days: 7
4444

4545
- name: Upload sdist artifact
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v5
4747
if: ${{ github.ref == 'refs/heads/master' && matrix.os ==
4848
'windows-latest'}}
4949
with:
@@ -55,13 +55,13 @@ jobs:
5555
name: Build wheels for wasm / emscripten
5656
runs-on: ubuntu-22.04
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v6
5959
with:
6060
submodules: true
61-
- uses: pypa/cibuildwheel@v3.2.1
61+
- uses: pypa/cibuildwheel@v3.3.0
6262
env:
6363
CIBW_PLATFORM: pyodide
64-
- uses: actions/upload-artifact@v4
64+
- uses: actions/upload-artifact@v5
6565
if: ${{ github.ref == 'refs/heads/master' }}
6666
with:
6767
name: cibw-wheels-pyodide-${{ matrix.os }}-${{ strategy.job-index }}
@@ -73,14 +73,14 @@ jobs:
7373
runs-on: macos-latest
7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777
with:
7878
submodules: true
7979
- run: brew upgrade cmake --formula
80-
- uses: pypa/cibuildwheel@v3.2.1
80+
- uses: pypa/cibuildwheel@v3.3.0
8181
env:
8282
CIBW_PLATFORM: ios
83-
- uses: actions/upload-artifact@v4
83+
- uses: actions/upload-artifact@v5
8484
if: ${{ github.ref == 'refs/heads/master' }}
8585
with:
8686
name: cibw-wheels-ios-${{ matrix.os }}-${{ strategy.job-index }}

0 commit comments

Comments
 (0)