Skip to content

Commit cc38179

Browse files
authored
chore(workflow): upgrade all upload artifacts to v4
The old one is deprecated and break the pipeline immediately.
1 parent 3bfc74f commit cc38179

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/e2e-test-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616
echo ::endgroup::build
1717
make ci-no-record
1818
make run run-cmd="npm run lint" make-args="no-interactive no-tty"
19-
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
19+
- uses: actions/upload-artifact@v4
2020
if: failure()
2121
with:
2222
name: e2e-screenshots
2323
path: e2e/cypress/screenshots
24-
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
24+
- uses: actions/upload-artifact@v4
2525
if: failure()
2626
with:
2727
name: e2e-snapshots
2828
path: e2e/cypress/snapshots
29-
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
29+
- uses: actions/upload-artifact@v4
3030
if: failure()
3131
with:
3232
name: e2e-videos

.github/workflows/e2e-test-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cd build
2323
docker compose -f docker-compose.yml -f docker-compose.e2e.yml logs --no-color > e2e.log
2424
if: failure()
25-
- uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
25+
- uses: actions/upload-artifact@v4
2626
if: failure()
2727
with:
2828
name: server-logs

.github/workflows/update-e2e-snapshot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ jobs:
6969
branch: ${{ steps.prcomm.outputs.BRANCH_NAME }}
7070

7171
- name: Upload artifact if failed
72-
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
72+
uses: actions/upload-artifact@v4
7373
if: failure() && steps.prcomm.outputs.BOOL_TRIGGERED == 'true'
7474
with:
7575
name: e2e-snapshots
7676
path: e2e/cypress/snapshots
7777

7878
- name: Upload artifact if failed
79-
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3
79+
uses: actions/upload-artifact@v4
8080
if: failure() && steps.prcomm.outputs.BOOL_TRIGGERED == 'true'
8181
with:
8282
name: e2e-videos

0 commit comments

Comments
 (0)