File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -24,15 +24,15 @@ jobs:
2424 cibw_archs : " arm64"
2525
2626 steps :
27- - uses : actions/checkout@v4
27+ - uses : actions/checkout@v5
2828
2929 - name : Build wheels
3030 uses : pypa/cibuildwheel@v2.22
3131 env :
3232 CIBW_ARCHS : ${{ matrix.cibw_archs }}
3333
3434 - name : Upload wheels
35- uses : actions/upload-artifact@v4
35+ uses : actions/upload-artifact@v5
3636 with :
3737 name : wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}
3838 path : ./wheelhouse/*.whl
@@ -42,10 +42,10 @@ jobs:
4242 name : Build source distribution
4343 runs-on : ubuntu-latest
4444 steps :
45- - uses : actions/checkout@v4
45+ - uses : actions/checkout@v5
4646
4747 - name : Set up Python
48- uses : actions/setup-python@v5
48+ uses : actions/setup-python@v6
4949 with :
5050 python-version : " 3.12"
5151
5858 run : python -m build --sdist
5959
6060 - name : Upload sdist
61- uses : actions/upload-artifact@v4
61+ uses : actions/upload-artifact@v5
6262 with :
6363 name : sdist
6464 path : dist/*.tar.gz
6969 needs : [build_wheels, build_sdist]
7070 runs-on : ubuntu-latest
7171 steps :
72- - uses : actions/download-artifact@v4
72+ - uses : actions/download-artifact@v5
7373 with :
7474 path : dist
7575 merge-multiple : true
Original file line number Diff line number Diff line change @@ -33,15 +33,15 @@ jobs:
3333 cibw_archs : " arm64"
3434
3535 steps :
36- - uses : actions/checkout@v4
36+ - uses : actions/checkout@v5
3737
3838 - name : Build wheels
3939 uses : pypa/cibuildwheel@v2.22
4040 env :
4141 CIBW_ARCHS : ${{ matrix.cibw_archs }}
4242
4343 - name : Upload wheels
44- uses : actions/upload-artifact@v4
44+ uses : actions/upload-artifact@v5
4545 with :
4646 name : wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}
4747 path : ./wheelhouse/*.whl
@@ -51,10 +51,10 @@ jobs:
5151 name : Build source distribution
5252 runs-on : ubuntu-latest
5353 steps :
54- - uses : actions/checkout@v4
54+ - uses : actions/checkout@v5
5555
5656 - name : Set up Python
57- uses : actions/setup-python@v5
57+ uses : actions/setup-python@v6
5858 with :
5959 python-version : " 3.12"
6060
6767 run : python -m build --sdist
6868
6969 - name : Upload sdist
70- uses : actions/upload-artifact@v4
70+ uses : actions/upload-artifact@v5
7171 with :
7272 name : sdist
7373 path : dist/*.tar.gz
8787
8888 steps :
8989 - name : Download all artifacts
90- uses : actions/download-artifact@v4
90+ uses : actions/download-artifact@v5
9191 with :
9292 path : dist
9393 merge-multiple : true
Original file line number Diff line number Diff line change 2020
2121 steps :
2222 - name : Set up Python ${{ matrix.python-version }}
23- uses : actions/setup-python@v5
23+ uses : actions/setup-python@v6
2424 with :
2525 python-version : ${{ matrix.python-version }}
2626
You can’t perform that action at this time.
0 commit comments