Skip to content

Commit

Permalink
Update GitHub Artifact Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored May 16, 2024
1 parent 17bdaf5 commit 5aea160
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- build
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/template-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cache: 'npm'
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '18'
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand All @@ -58,7 +58,7 @@ jobs:
# workaround so that Cypress runs with the system node version rather than action's configured node version.
# https://github.com/cypress-io/github-action/issues/489#issuecomment-1021379037
command-prefix: "--"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
with:
name: e2e-videos
Expand Down

0 comments on commit 5aea160

Please sign in to comment.