@@ -107,7 +107,7 @@ jobs:
107107 name : Download Data (SF${{ github.event.inputs.scale_factor || '1' }})
108108 runs-on : ubuntu-latest
109109 steps :
110- - uses : actions/checkout@v4
110+ - uses : actions/checkout@v6
111111
112112 - name : Cache benchmark data
113113 id : cache-data
@@ -118,7 +118,7 @@ jobs:
118118
119119 - name : Setup Python
120120 if : steps.cache-data.outputs.cache-hit != 'true'
121- uses : actions/setup-python@v5
121+ uses : actions/setup-python@v6
122122 with :
123123 python-version : ' 3.11'
124124
@@ -191,7 +191,7 @@ jobs:
191191 runs-on : ubuntu-latest
192192 if : contains(github.event.inputs.engines || 'duckdb,geopandas,sedonadb,spatial_polars', 'duckdb')
193193 steps :
194- - uses : actions/checkout@v4
194+ - uses : actions/checkout@v6
195195
196196 - name : Restore benchmark data from cache
197197 uses : actions/cache/restore@v4
@@ -201,7 +201,7 @@ jobs:
201201 fail-on-cache-miss : true
202202
203203 - name : Setup Python
204- uses : actions/setup-python@v5
204+ uses : actions/setup-python@v6
205205 with :
206206 python-version : ' 3.11'
207207
@@ -238,7 +238,7 @@ jobs:
238238 --output duckdb_results.json
239239
240240 - name : Upload results
241- uses : actions/upload-artifact@v4
241+ uses : actions/upload-artifact@v6
242242 with :
243243 name : duckdb-results-sf${{ env.SCALE_FACTOR }}
244244 path : duckdb_results.json
@@ -250,7 +250,7 @@ jobs:
250250 runs-on : ubuntu-latest
251251 if : contains(github.event.inputs.engines || 'duckdb,geopandas,sedonadb,spatial_polars', 'geopandas')
252252 steps :
253- - uses : actions/checkout@v4
253+ - uses : actions/checkout@v6
254254
255255 - name : Restore benchmark data from cache
256256 uses : actions/cache/restore@v4
@@ -260,7 +260,7 @@ jobs:
260260 fail-on-cache-miss : true
261261
262262 - name : Setup Python
263- uses : actions/setup-python@v5
263+ uses : actions/setup-python@v6
264264 with :
265265 python-version : ' 3.11'
266266
@@ -284,7 +284,7 @@ jobs:
284284 --output geopandas_results.json
285285
286286 - name : Upload results
287- uses : actions/upload-artifact@v4
287+ uses : actions/upload-artifact@v6
288288 with :
289289 name : geopandas-results-sf${{ env.SCALE_FACTOR }}
290290 path : geopandas_results.json
@@ -296,7 +296,7 @@ jobs:
296296 runs-on : ubuntu-latest
297297 if : contains(github.event.inputs.engines || 'duckdb,geopandas,sedonadb,spatial_polars', 'sedonadb')
298298 steps :
299- - uses : actions/checkout@v4
299+ - uses : actions/checkout@v6
300300
301301 - name : Restore benchmark data from cache
302302 uses : actions/cache/restore@v4
@@ -306,7 +306,7 @@ jobs:
306306 fail-on-cache-miss : true
307307
308308 - name : Setup Python
309- uses : actions/setup-python@v5
309+ uses : actions/setup-python@v6
310310 with :
311311 python-version : ' 3.11'
312312
@@ -340,7 +340,7 @@ jobs:
340340 --output sedonadb_results.json
341341
342342 - name : Upload results
343- uses : actions/upload-artifact@v4
343+ uses : actions/upload-artifact@v6
344344 with :
345345 name : sedonadb-results-sf${{ env.SCALE_FACTOR }}
346346 path : sedonadb_results.json
@@ -352,7 +352,7 @@ jobs:
352352 runs-on : ubuntu-latest
353353 if : contains(github.event.inputs.engines || 'duckdb,geopandas,sedonadb,spatial_polars', 'spatial_polars')
354354 steps :
355- - uses : actions/checkout@v4
355+ - uses : actions/checkout@v6
356356
357357 - name : Restore benchmark data from cache
358358 uses : actions/cache/restore@v4
@@ -362,7 +362,7 @@ jobs:
362362 fail-on-cache-miss : true
363363
364364 - name : Setup Python
365- uses : actions/setup-python@v5
365+ uses : actions/setup-python@v6
366366 with :
367367 python-version : ' 3.11'
368368
@@ -386,7 +386,7 @@ jobs:
386386 --output spatial_polars_results.json
387387
388388 - name : Upload results
389- uses : actions/upload-artifact@v4
389+ uses : actions/upload-artifact@v6
390390 with :
391391 name : spatial_polars-results-sf${{ env.SCALE_FACTOR }}
392392 path : spatial_polars_results.json
@@ -398,42 +398,42 @@ jobs:
398398 if : always() && (needs.benchmark-duckdb.result == 'success' || needs.benchmark-geopandas.result == 'success' || needs.benchmark-sedonadb.result == 'success' || needs.benchmark-spatial-polars.result == 'success')
399399 runs-on : ubuntu-latest
400400 steps :
401- - uses : actions/checkout@v4
401+ - uses : actions/checkout@v6
402402
403403 - name : Download DuckDB results
404404 if : needs.benchmark-duckdb.result == 'success'
405- uses : actions/download-artifact@v4
405+ uses : actions/download-artifact@v7
406406 with :
407407 name : duckdb-results-sf${{ env.SCALE_FACTOR }}
408408 path : results
409409 continue-on-error : true
410410
411411 - name : Download GeoPandas results
412412 if : needs.benchmark-geopandas.result == 'success'
413- uses : actions/download-artifact@v4
413+ uses : actions/download-artifact@v7
414414 with :
415415 name : geopandas-results-sf${{ env.SCALE_FACTOR }}
416416 path : results
417417 continue-on-error : true
418418
419419 - name : Download SedonaDB results
420420 if : needs.benchmark-sedonadb.result == 'success'
421- uses : actions/download-artifact@v4
421+ uses : actions/download-artifact@v7
422422 with :
423423 name : sedonadb-results-sf${{ env.SCALE_FACTOR }}
424424 path : results
425425 continue-on-error : true
426426
427427 - name : Download Spatial Polars results
428428 if : needs.benchmark-spatial-polars.result == 'success'
429- uses : actions/download-artifact@v4
429+ uses : actions/download-artifact@v7
430430 with :
431431 name : spatial_polars-results-sf${{ env.SCALE_FACTOR }}
432432 path : results
433433 continue-on-error : true
434434
435435 - name : Setup Python
436- uses : actions/setup-python@v5
436+ uses : actions/setup-python@v6
437437 with :
438438 python-version : ' 3.11'
439439
@@ -452,7 +452,7 @@ jobs:
452452 run : cat benchmark_summary.md >> $GITHUB_STEP_SUMMARY
453453
454454 - name : Upload combined results
455- uses : actions/upload-artifact@v4
455+ uses : actions/upload-artifact@v6
456456 with :
457457 name : benchmark-summary-sf${{ env.SCALE_FACTOR }}
458458 path : |
0 commit comments