Skip to content

Commit 5077b8d

Browse files
chore(deps): update github artifact actions to v7 (major) (#6942)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/download-artifact](https://redirect.github.com/actions/download-artifact) | action | major | `v6` → `v7` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v4` → `v7` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | major | `v5` → `v7` | --- ### Release Notes <details> <summary>actions/download-artifact (actions/download-artifact)</summary> ### [`v7`](https://redirect.github.com/actions/download-artifact/compare/v6...v7) [Compare Source](https://redirect.github.com/actions/download-artifact/compare/v6...v7) </details> <details> <summary>actions/upload-artifact (actions/upload-artifact)</summary> ### [`v7`](https://redirect.github.com/actions/upload-artifact/compare/v6...v7) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v6...v7) ### [`v6`](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v5...v6) ### [`v5`](https://redirect.github.com/actions/upload-artifact/compare/v4...v5) [Compare Source](https://redirect.github.com/actions/upload-artifact/compare/v4...v5) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/vortex-data/vortex). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42Ni40IiwidXBkYXRlZEluVmVyIjoiNDMuNjYuNCIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AiLCJsYWJlbHMiOlsiY2hhbmdlbG9nL2Nob3JlIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent eca9aa1 commit 5077b8d

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
# Note, since we provide the job with a CloudFlare scoped API token, we run it in a separate job that doesn't
7373
# execute any repository code.
74-
- uses: actions/download-artifact@v6
74+
- uses: actions/download-artifact@v7
7575
with:
7676
name: github-pages
7777
- name: Extract Pages Artifact

.github/workflows/fuzz-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
--ignore-filename-regex='(\.cargo|rustc|registry)'
116116
117117
- name: Upload coverage report
118-
uses: actions/upload-artifact@v5
118+
uses: actions/upload-artifact@v7
119119
with:
120120
name: ${{ matrix.fuzz_target }}-coverage
121121
path: coverage_html/

.github/workflows/package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
PYO3_ENVIRONMENT_SIGNATURE: "cpython3"
7777

7878
- name: Upload wheels
79-
uses: actions/upload-artifact@v5
79+
uses: actions/upload-artifact@v7
8080
with:
8181
name: "wheels-${{ matrix.target.target }}.zip"
8282
path: dist/
@@ -97,7 +97,7 @@ jobs:
9797
repo-token: ${{ secrets.GITHUB_TOKEN }}
9898
enable-sccache: "false"
9999
- run: cargo build --release --package vortex-jni
100-
- uses: actions/upload-artifact@v5
100+
- uses: actions/upload-artifact@v7
101101
with:
102102
name: "libvortex_jni_aarch64-apple-darwin.zip"
103103
path: "target/release/libvortex_jni.dylib"
@@ -130,7 +130,7 @@ jobs:
130130
repo-token: ${{ secrets.GITHUB_TOKEN }}
131131
enable-sccache: "false"
132132
- run: cargo build --release --package vortex-jni
133-
- uses: actions/upload-artifact@v5
133+
- uses: actions/upload-artifact@v7
134134
with:
135135
name: "libvortex_jni_${{ matrix.target.target }}.zip"
136136
path: "target/release/libvortex_jni.so"

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
name: push-to-pypi
5858
url: https://pypi.org/p/vortex-data
5959
steps:
60-
- uses: actions/download-artifact@v6
60+
- uses: actions/download-artifact@v7
6161
with:
6262
pattern: wheels-*.zip
6363
# https://github.com/actions/download-artifact?tab=readme-ov-file#download-all-artifacts
@@ -90,7 +90,7 @@ jobs:
9090
distribution: "corretto"
9191
java-version: "17"
9292
- uses: gradle/actions/setup-gradle@v5
93-
- uses: actions/download-artifact@v6
93+
- uses: actions/download-artifact@v7
9494
with:
9595
pattern: libvortex_jni_*.zip
9696
- name: Copy native JNI libs

.github/workflows/report-fuzz-crash.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ jobs:
4949
uses: actions/checkout@v6
5050

5151
- name: Download fuzzer logs
52-
uses: actions/download-artifact@v6
52+
uses: actions/download-artifact@v7
5353
with:
5454
name: ${{ inputs.logs_artifact_name }}
5555
path: ./logs
5656

5757
- name: Download crash artifacts
58-
uses: actions/download-artifact@v6
58+
uses: actions/download-artifact@v7
5959
with:
6060
name: ${{ inputs.artifact_name }}
6161
path: ./crash_artifacts

.github/workflows/run-fuzzer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,15 +161,15 @@ jobs:
161161
- name: Archive crash artifacts
162162
id: upload_artifacts
163163
if: steps.check.outputs.crashes_found == 'true'
164-
uses: actions/upload-artifact@v5
164+
uses: actions/upload-artifact@v7
165165
with:
166166
name: ${{ inputs.fuzz_target }}-crash-artifacts
167167
path: fuzz/artifacts
168168
retention-days: 180
169169

170170
- name: Archive fuzzer output log
171171
if: steps.check.outputs.crashes_found == 'true'
172-
uses: actions/upload-artifact@v5
172+
uses: actions/upload-artifact@v7
173173
with:
174174
name: ${{ inputs.fuzz_target }}-logs
175175
path: fuzz_output.log

.github/workflows/wasm-fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name: Upload corpus
8787
if: always()
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v7
8989
with:
9090
name: corpus-wasm
9191
path: corpus-wasm/

0 commit comments

Comments
 (0)