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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
# Upload results as artifacts for review
- name: Upload audit results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: security-audit-results
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload link check report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: always()
with:
name: link-check-report
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ jobs:

- name: Upload corpus
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: corpus-${{ matrix.target }}
path: fuzz/corpus/${{ matrix.target }}
retention-days: 30

- name: Upload crash artifacts
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: crashes-${{ matrix.target }}
path: |
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:

- name: Upload all artifacts
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: extended-fuzz-results
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ jobs:
shell: bash

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.artifact_name }}
path: |
Expand Down