Skip to content

Commit

Permalink
chore(deps): update actions/download-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Dec 25, 2023
1 parent d7843ba commit f02dd54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/apply-version-bundle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
runs:
using: composite
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: ${{ inputs.artifact_name }}
if: inputs.new_release == 'true'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,25 +315,25 @@ jobs:
artifact_name: ${{ needs.version.outputs.artifact_name }}

- name: Download build artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-x86_64-unknown-linux-gnu
path: dist/

- name: Download build artifacts (x86_64-pc-windows-msvc)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-x86_64-pc-windows-msvc
path: dist/

- name: Download wheels artifacts (x86_64-unknown-linux-gnu)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels-x86_64-unknown-linux-gnu
path: wheels/

- name: Download wheels artifacts (x86_64-pc-windows-msvc)
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wheels-x86_64-pc-windows-msvc
path: wheels/
Expand Down

0 comments on commit f02dd54

Please sign in to comment.