Skip to content

Commit fb7627e

Browse files
committed
Fix version in CI.
1 parent c8b503f commit fb7627e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
command: build
1919
args: --release --sdist -o dist --find-interpreter
2020
- name: Upload wheels
21-
uses: actions/upload-artifact@v2
21+
uses: actions/upload-artifact@v4
2222
with:
2323
name: wheels
2424
path: dist
@@ -32,7 +32,7 @@ jobs:
3232
command: build
3333
args: --release -o dist --find-interpreter
3434
- name: Upload wheels
35-
uses: actions/upload-artifact@v2
35+
uses: actions/upload-artifact@v4
3636
with:
3737
name: wheels
3838
path: dist
@@ -46,7 +46,7 @@ jobs:
4646
command: build
4747
args: --release -o dist --universal2 --find-interpreter
4848
- name: Upload wheels
49-
uses: actions/upload-artifact@v2
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: wheels
5252
path: dist
@@ -57,7 +57,7 @@ jobs:
5757
if: "startsWith(github.ref, 'refs/tags/')"
5858
needs: [ macos, windows, linux ]
5959
steps:
60-
- uses: actions/download-artifact@v2
60+
- uses: actions/download-artifact@v4
6161
with:
6262
name: wheels
6363
- name: Publish to PyPI
@@ -66,4 +66,4 @@ jobs:
6666
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
6767
with:
6868
command: upload
69-
args: --skip-existing *
69+
args: --skip-existing *

0 commit comments

Comments
 (0)