Skip to content

chore(deps): update actions/upload-artifact action to v3 #4944

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

Merged
merged 1 commit into from
Mar 4, 2022
Merged
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.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ jobs:
run: tar -czf package.tar.gz release

- name: Upload npm package artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: npm-package
path: ./package.tar.gz
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
run: yarn package

- name: Upload release artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release-packages
path: ./release-packages
Expand Down Expand Up @@ -352,7 +352,7 @@ jobs:
run: yarn package ${NPM_CONFIG_ARCH}

- name: Upload release artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release-packages
path: ./release-packages
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
run: yarn package

- name: Upload release artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: release-packages
path: ./release-packages
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:

- name: Upload test artifacts
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: failed-test-videos
path: ./test/test-results
Expand Down