@@ -107,11 +107,11 @@ 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
114- uses : actions/cache@v4
114+ uses : actions/cache@v5
115115 with :
116116 path : benchmark-data-sf${{ env.SCALE_FACTOR }}
117117 key : benchmark-data-${{ env.HF_DATA_VERSION }}-sf${{ env.SCALE_FACTOR }}
@@ -191,10 +191,10 @@ 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
197- uses : actions/cache/restore@v4
197+ uses : actions/cache/restore@v5
198198 with :
199199 path : benchmark-data-sf${{ env.SCALE_FACTOR }}
200200 key : benchmark-data-${{ env.HF_DATA_VERSION }}-sf${{ env.SCALE_FACTOR }}
@@ -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,10 +250,10 @@ 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
256- uses : actions/cache/restore@v4
256+ uses : actions/cache/restore@v5
257257 with :
258258 path : benchmark-data-sf${{ env.SCALE_FACTOR }}
259259 key : benchmark-data-${{ env.HF_DATA_VERSION }}-sf${{ env.SCALE_FACTOR }}
@@ -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,10 +296,10 @@ 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
302- uses : actions/cache/restore@v4
302+ uses : actions/cache/restore@v5
303303 with :
304304 path : benchmark-data-sf${{ env.SCALE_FACTOR }}
305305 key : benchmark-data-${{ env.HF_DATA_VERSION }}-sf${{ env.SCALE_FACTOR }}
@@ -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,10 +352,10 @@ 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
358- uses : actions/cache/restore@v4
358+ uses : actions/cache/restore@v5
359359 with :
360360 path : benchmark-data-sf${{ env.SCALE_FACTOR }}
361361 key : benchmark-data-${{ env.HF_DATA_VERSION }}-sf${{ env.SCALE_FACTOR }}
@@ -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,35 +398,35 @@ 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
@@ -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