3838 pip install build
3939 && python -m build --sdist . --outdir dist
4040
41- - uses : actions/upload-artifact@v6
41+ - uses : actions/upload-artifact@v7
4242 with :
4343 name : pypi-artifacts
4444 path : ${{ github.workspace }}/dist/*.tar.gz
8989 env :
9090 CIBW_ARCHS : ${{ matrix.arch }}
9191
92- - uses : actions/upload-artifact@v6
92+ - uses : actions/upload-artifact@v7
9393 with :
9494 name : pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
9595 path : ${{ github.workspace }}/wheelhouse/*.whl
@@ -132,7 +132,7 @@ jobs:
132132 env :
133133 CIBW_ARCHS : ${{ matrix.arch }}
134134
135- - uses : actions/upload-artifact@v6
135+ - uses : actions/upload-artifact@v7
136136 with :
137137 name : pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
138138 path : ${{ github.workspace }}/wheelhouse/*.whl
@@ -172,7 +172,7 @@ jobs:
172172 CIBW_ARCHS : ARM64
173173 CIBW_SKIP : " cp310-*"
174174
175- - uses : actions/upload-artifact@v6
175+ - uses : actions/upload-artifact@v7
176176 with :
177177 name : pypi-artifacts-windows-11-arm-ARM64
178178 path : ${{ github.workspace }}/wheelhouse/*.whl
@@ -183,7 +183,7 @@ jobs:
183183 name : " Show artifacts"
184184 runs-on : ubuntu-22.04
185185 steps :
186- - uses : actions/download-artifact@v7
186+ - uses : actions/download-artifact@v8
187187 with :
188188 pattern : pypi-artifacts*
189189 path : ${{ github.workspace }}/dist
@@ -201,7 +201,7 @@ jobs:
201201 # upload to PyPI for every tag starting with 'v'
202202 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
203203 steps :
204- - uses : actions/download-artifact@v7
204+ - uses : actions/download-artifact@v8
205205 with :
206206 pattern : pypi-artifacts*
207207 path : ${{ github.workspace }}/dist
0 commit comments