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

ci(github): update action/download-artifact from v1 to v3 #312

Merged
merged 2 commits into from Jan 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/test.yml
Expand Up @@ -85,11 +85,9 @@ jobs:
path/to/dir-[23]/*
!path/to/dir-3/*.txt

# Verify artifacts. Switch to download-artifact@v2 once it's out of preview

# Download Artifact #1 and verify the correctness of the content
- name: 'Download artifact #1'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: 'Artifact-A'
path: some/new/path
Expand All @@ -109,7 +107,7 @@ jobs:

# Download Artifact #2 and verify the correctness of the content
- name: 'Download artifact #2'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: 'artifact'
path: some/other/path
Expand All @@ -130,7 +128,7 @@ jobs:

# Download Artifact #3 and verify the correctness of the content
- name: 'Download artifact #3'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: 'GZip-Artifact'
path: gzip/artifact/path
Expand All @@ -150,7 +148,7 @@ jobs:
shell: pwsh

- name: 'Download artifact #4'
uses: actions/download-artifact@v1
uses: actions/download-artifact@v3
with:
name: 'Multi-Path-Artifact'
path: multi/artifact
Expand Down