Skip to content

Commit 1096c9b

Browse files
authored
Merge pull request #94 from apache/dependabot/github_actions/github-dependencies-4c7d03f22a
Bump the github-dependencies group across 1 directory with 3 updates
2 parents c67fa92 + 0b39d6f commit 1096c9b

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/benchmark.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ jobs:
261261
262262
- name: Upload results
263263
if: always() && hashFiles(format('duckdb_{0}_results.json', matrix.query)) != ''
264-
uses: actions/upload-artifact@v6
264+
uses: actions/upload-artifact@v7
265265
with:
266266
name: duckdb-${{ matrix.query }}-results-sf${{ matrix.scale_factor }}
267267
path: duckdb_${{ matrix.query }}_results.json
@@ -317,7 +317,7 @@ jobs:
317317
318318
- name: Upload results
319319
if: always() && hashFiles(format('geopandas_{0}_results.json', matrix.query)) != ''
320-
uses: actions/upload-artifact@v6
320+
uses: actions/upload-artifact@v7
321321
with:
322322
name: geopandas-${{ matrix.query }}-results-sf${{ matrix.scale_factor }}
323323
path: geopandas_${{ matrix.query }}_results.json
@@ -378,7 +378,7 @@ jobs:
378378
379379
- name: Upload results
380380
if: always() && hashFiles(format('sedonadb_{0}_results.json', matrix.query)) != ''
381-
uses: actions/upload-artifact@v6
381+
uses: actions/upload-artifact@v7
382382
with:
383383
name: sedonadb-${{ matrix.query }}-results-sf${{ matrix.scale_factor }}
384384
path: sedonadb_${{ matrix.query }}_results.json
@@ -434,7 +434,7 @@ jobs:
434434
435435
- name: Upload results
436436
if: always() && hashFiles(format('spatial_polars_{0}_results.json', matrix.query)) != ''
437-
uses: actions/upload-artifact@v6
437+
uses: actions/upload-artifact@v7
438438
with:
439439
name: spatial_polars-${{ matrix.query }}-results-sf${{ matrix.scale_factor }}
440440
path: spatial_polars_${{ matrix.query }}_results.json
@@ -452,7 +452,7 @@ jobs:
452452
- uses: actions/checkout@v6
453453

454454
- name: Download all results for this scale factor
455-
uses: actions/download-artifact@v7
455+
uses: actions/download-artifact@v8
456456
with:
457457
pattern: '*-results-sf${{ matrix.scale_factor }}'
458458
path: results
@@ -480,7 +480,7 @@ jobs:
480480
run: cat benchmark_summary.md >> $GITHUB_STEP_SUMMARY
481481

482482
- name: Upload combined results
483-
uses: actions/upload-artifact@v6
483+
uses: actions/upload-artifact@v7
484484
with:
485485
name: benchmark-summary-sf${{ matrix.scale_factor }}
486486
path: |

.github/workflows/build-py-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
manylinux: ${{ matrix.manylinux || '' }}
113113
- name: Upload wheels
114114
if: ${{ inputs.upload-artifacts || github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
115-
uses: actions/upload-artifact@v6
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: wheels-${{ matrix.os }}-${{ matrix.target }}
118118
path: spatialbench-cli/dist
@@ -129,7 +129,7 @@ jobs:
129129
working-directory: spatialbench-cli
130130
- name: Upload sdist
131131
if: ${{ inputs.upload-artifacts || github.event_name == 'push' || github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' }}
132-
uses: actions/upload-artifact@v6
132+
uses: actions/upload-artifact@v7
133133
with:
134134
name: wheels-sdist
135135
path: spatialbench-cli/dist

.github/workflows/packaging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
tar -czf docs.tgz documentation-site
5858
5959
- name: Upload docs artifact
60-
uses: actions/upload-artifact@v6
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: docs
6363
retention-days: 2
@@ -72,7 +72,7 @@ jobs:
7272
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
7373

7474
steps:
75-
- uses: actions/download-artifact@v7
75+
- uses: actions/download-artifact@v8
7676
with:
7777
name: docs
7878

.github/workflows/spatialbench-cli-publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
attestations: write # Used to generate artifact attestation
2525
steps:
2626
- name: Download all build artifacts
27-
uses: actions/download-artifact@v7
27+
uses: actions/download-artifact@v8
2828
with:
2929
pattern: '*'
3030
merge-multiple: true
@@ -37,7 +37,7 @@ jobs:
3737
run: python -m twine check --strict dist/*
3838

3939
- name: Generate artifact attestation
40-
uses: actions/attest-build-provenance@v3
40+
uses: actions/attest-build-provenance@v4
4141
with:
4242
subject-path: 'dist/*'
4343

0 commit comments

Comments
 (0)