5757 python : ["cp39", "cp310", "cp311", "cp312", "cp313", "cp314"]
5858
5959 steps :
60- - uses : actions/checkout@v4
60+ - uses : actions/checkout@v6
6161
6262 # Download and set up custom libtiledb if ref was specified
6363 - name : Determine platform for custom libtiledb
8686
8787 - name : Download custom libtiledb artifacts
8888 if : inputs.libtiledb_ref != ''
89- uses : actions/download-artifact@v4
89+ uses : actions/download-artifact@v6
9090 with :
9191 name : release-${{ steps.platform.outputs.platform }}
9292 path : ${{ github.workspace }}/libtiledb-dist
@@ -168,7 +168,7 @@ jobs:
168168 with :
169169 output-dir : wheelhouse
170170
171- - uses : actions/upload-artifact@v4
171+ - uses : actions/upload-artifact@v5
172172 with :
173173 name : cibw-wheels-${{ matrix.buildplat[0] }}-${{ matrix.buildplat[1] }}-${{ matrix.python }}
174174 path : " ./wheelhouse/*.whl"
@@ -182,7 +182,7 @@ jobs:
182182 outputs :
183183 sdist_name : ${{ steps.get_sdist_name.outputs.sdist_name }}
184184 steps :
185- - uses : actions/checkout@v4
185+ - uses : actions/checkout@v6
186186
187187 - name : Build sdist
188188 run : pipx run build --sdist
@@ -192,7 +192,7 @@ jobs:
192192 run : |
193193 echo "sdist_name=$(ls dist/ | head -n 1)" >> "$GITHUB_OUTPUT"
194194
195- - uses : actions/upload-artifact@v4
195+ - uses : actions/upload-artifact@v5
196196 with :
197197 name : sdist
198198 path : dist/*.tar.gz
@@ -215,20 +215,20 @@ jobs:
215215 RUNNER_TEMP : " "
216216 steps :
217217 - name : Set up Python ${{ matrix.python }}
218- uses : actions/setup-python@v5
218+ uses : actions/setup-python@v6
219219 with :
220220 python-version : ${{ matrix.python }}
221221
222222 - name : Download sdist artifact
223- uses : actions/download-artifact@v4
223+ uses : actions/download-artifact@v6
224224 with :
225225 name : sdist
226226 path : dist
227227
228228 - name : Install sdist artifact
229229 run : pip install --verbose dist/${{ needs.build_sdist.outputs.sdist_name }}
230230
231- - uses : actions/checkout@v4
231+ - uses : actions/checkout@v6
232232
233233 - name : Install test dependencies
234234 run : pip install pytest pytest-rerunfailures hypothesis psutil pyarrow
@@ -255,7 +255,7 @@ jobs:
255255 outputs :
256256 package_version : ${{ steps.get_package_version.outputs.package_version }}
257257 steps :
258- - uses : actions/download-artifact@v4
258+ - uses : actions/download-artifact@v6
259259 with :
260260 path : dist
261261 merge-multiple : true
0 commit comments