Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
steps:
# Note, since we provide the job with a CloudFlare scoped API token, we run it in a separate job that doesn't
# execute any repository code.
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: github-pages
- name: Extract Pages Artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
--ignore-filename-regex='(\.cargo|rustc|registry)'
- name: Upload coverage report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.fuzz_target }}-coverage
path: coverage_html/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
PYO3_ENVIRONMENT_SIGNATURE: "cpython3"

- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: "wheels-${{ matrix.target.target }}.zip"
path: dist/
Expand All @@ -97,7 +97,7 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
enable-sccache: "false"
- run: cargo build --release --package vortex-jni
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: "libvortex_jni_aarch64-apple-darwin.zip"
path: "target/release/libvortex_jni.dylib"
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
enable-sccache: "false"
- run: cargo build --release --package vortex-jni
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: "libvortex_jni_${{ matrix.target.target }}.zip"
path: "target/release/libvortex_jni.so"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
name: push-to-pypi
url: https://pypi.org/p/vortex-data
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
pattern: wheels-*.zip
# https://github.com/actions/download-artifact?tab=readme-ov-file#download-all-artifacts
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
distribution: "corretto"
java-version: "17"
- uses: gradle/actions/setup-gradle@v5
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
pattern: libvortex_jni_*.zip
- name: Copy native JNI libs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/report-fuzz-crash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ jobs:
uses: actions/checkout@v6

- name: Download fuzzer logs
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ inputs.logs_artifact_name }}
path: ./logs

- name: Download crash artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ inputs.artifact_name }}
path: ./crash_artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,15 +161,15 @@ jobs:
- name: Archive crash artifacts
id: upload_artifacts
if: steps.check.outputs.crashes_found == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.fuzz_target }}-crash-artifacts
path: fuzz/artifacts
retention-days: 180

- name: Archive fuzzer output log
if: steps.check.outputs.crashes_found == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.fuzz_target }}-logs
path: fuzz_output.log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Upload corpus
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: corpus-wasm
path: corpus-wasm/
Expand Down
Loading