Skip to content

Commit

Permalink
ci: fix github's "set-output" deprecation warning
Browse files Browse the repository at this point in the history
Use a new version of upload-artifact and download-artifact to comply
with github's deprecation.

actions/upload-artifact#351
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
  • Loading branch information
wiese committed Jan 27, 2023
1 parent cb7f823 commit b3ca6a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build
run: yarn build
- name: Back up build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
Expand All @@ -30,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: dist
path: dist
Expand Down

0 comments on commit b3ca6a5

Please sign in to comment.