Skip to content

build(deps): bump actions/download-artifact from 4 to 5 #4865

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: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,19 +162,19 @@ jobs:

steps:
- name: Download assets
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: assets
path: assets-dist

- name: Download binary x86_64
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: binary-x86_64-unknown-linux-gnu
path: binary-x86_64

- name: Download binary aarch64
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: binary-aarch64-unknown-linux-gnu
path: binary-aarch64
Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
- build-image
steps:
- name: Download the artifacts from the previous job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: mas-cli-*
path: artifacts
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
.github/scripts

- name: Download the artifacts from the previous job
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
pattern: mas-cli-*
path: artifacts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ jobs:
- uses: ./.github/actions/build-policies

- name: Download archive
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
name: nextest-archive

Expand Down
Loading