Skip to content
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

chore: Bump actions/download-artifact from 2 to 3 #688

Open
wants to merge 1 commit into
base: master
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
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Download assets
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: assets
path: public
Expand Down Expand Up @@ -217,13 +217,13 @@ jobs:
uses: actions/checkout@v2

- name: Download assets
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: assets
path: public

- name: Download source maps
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: sourcemaps
path: public
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
with:
ref: v${{ needs.semantic.outputs.new_release_version }}
- name: Download changelog file
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: changelog

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ jobs:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Download results
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
path: results
name: results
Expand Down