Skip to content

chore(deps): update actions/download-artifact action to v5 #434

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: dist

Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
submodules: true

- name: Download Dist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: dist

Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
submodules: true

- name: Download Dist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: dist

Expand Down Expand Up @@ -533,7 +533,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Download Executables
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: exe-*
path: ./exe/
Expand All @@ -545,7 +545,7 @@ jobs:
chmod +x -R ./exe/

- name: Download Dist
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: dist
path: dist/
Expand Down
Loading