3838 pip install build
3939 && python -m build --sdist . --outdir dist
4040
41- - uses : actions/upload-artifact@v4
41+ - uses : actions/upload-artifact@v5
4242 with :
4343 name : pypi-artifacts
4444 path : ${{ github.workspace }}/dist/*.tar.gz
9393 env :
9494 CIBW_ARCHS : ${{ matrix.arch }}
9595
96- - uses : actions/upload-artifact@v4
96+ - uses : actions/upload-artifact@v5
9797 with :
9898 name : pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
9999 path : ${{ github.workspace }}/wheelhouse/*.whl
@@ -130,7 +130,7 @@ jobs:
130130 env :
131131 CIBW_ARCHS : ${{ matrix.arch }}
132132
133- - uses : actions/upload-artifact@v4
133+ - uses : actions/upload-artifact@v5
134134 with :
135135 name : pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
136136 path : ${{ github.workspace }}/wheelhouse/*.whl
@@ -141,7 +141,7 @@ jobs:
141141 name : " Show artifacts"
142142 runs-on : ubuntu-22.04
143143 steps :
144- - uses : actions/download-artifact@v5
144+ - uses : actions/download-artifact@v6
145145 with :
146146 pattern : pypi-artifacts*
147147 path : ${{ github.workspace }}/dist
@@ -159,7 +159,7 @@ jobs:
159159 # upload to PyPI for every tag starting with 'v'
160160 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
161161 steps :
162- - uses : actions/download-artifact@v5
162+ - uses : actions/download-artifact@v6
163163 with :
164164 pattern : pypi-artifacts*
165165 path : ${{ github.workspace }}/dist
0 commit comments