3838 pip install build
3939 && python -m build --sdist . --outdir dist
4040
41- - uses : actions/upload-artifact@v5
41+ - uses : actions/upload-artifact@v6
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@v5
92+ - uses : actions/upload-artifact@v6
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@v5
135+ - uses : actions/upload-artifact@v6
136136 with :
137137 name : pypi-artifacts-${{ matrix.os }}-${{ matrix.arch }}
138138 path : ${{ github.workspace }}/wheelhouse/*.whl
@@ -143,7 +143,7 @@ jobs:
143143 name : " Show artifacts"
144144 runs-on : ubuntu-22.04
145145 steps :
146- - uses : actions/download-artifact@v6
146+ - uses : actions/download-artifact@v7
147147 with :
148148 pattern : pypi-artifacts*
149149 path : ${{ github.workspace }}/dist
@@ -161,7 +161,7 @@ jobs:
161161 # upload to PyPI for every tag starting with 'v'
162162 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
163163 steps :
164- - uses : actions/download-artifact@v6
164+ - uses : actions/download-artifact@v7
165165 with :
166166 pattern : pypi-artifacts*
167167 path : ${{ github.workspace }}/dist
0 commit comments