Skip to content

Commit c6c6c39

Browse files
committed
Update GitHub action versions
1 parent b34fc3d commit c6c6c39

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ jobs:
4343
archs: auto,universal2
4444

4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v6
4747

4848
- name: Build wheels
49-
uses: pypa/cibuildwheel@v3.3.1
49+
uses: pypa/cibuildwheel@v3.4
5050
env:
5151
CIBW_PLATFORM: ${{ matrix.platform }}
5252
CIBW_ARCHS: ${{ matrix.archs }}
5353
MACOSX_DEPLOYMENT_TARGET: "11.0"
5454

55-
- uses: actions/upload-artifact@v4
55+
- uses: actions/upload-artifact@v7
5656
with:
5757
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
5858
path: ./wheelhouse/*.whl
@@ -61,12 +61,12 @@ jobs:
6161
name: Build source distribution
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v6
6565

6666
- name: Build sdist
6767
run: pipx run build --sdist
6868

69-
- uses: actions/upload-artifact@v4
69+
- uses: actions/upload-artifact@v7
7070
with:
7171
name: cibw-sdist
7272
path: dist/*.tar.gz
@@ -83,7 +83,7 @@ jobs:
8383
id-token: write # IMPORTANT: mandatory for trusted publishing
8484
steps:
8585
- name: Download the dist file
86-
uses: actions/download-artifact@v4
86+
uses: actions/download-artifact@v8
8787
with:
8888
pattern: cibw-*
8989
path: dist

0 commit comments

Comments
 (0)