Skip to content
Closed
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ jobs:
uses: actions/checkout@v4

- name: Download all binary artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: binary-*
path: artifacts/
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:
fetch-depth: 0

- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: release-*
path: artifacts/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ jobs:
- name: Download security reports
# Only download if artifacts were uploaded (schedule/dispatch)
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: security-reports-${{ github.run_id }}
path: security-reports/
Expand All @@ -649,7 +649,7 @@ jobs:
- name: Download dependency reports
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: dependency-reports-${{ github.run_id }}
path: dependency-reports/
Expand Down Expand Up @@ -1333,7 +1333,7 @@ jobs:
if: always()
steps:
- name: Download all reports
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
path: reports/

Expand Down