Skip to content
Closed
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions .github/workflows/branch-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- name: Upload workflow event log (early upload)
if: always()
id: upload_event_log
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: workflow-event-log
path: artifacts/workflow-event.log
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:

- name: Upload build logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-logs
path: artifacts/build-logs.txt
Expand All @@ -439,7 +439,7 @@ jobs:

- name: Upload webpack stats
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: webpack-stats
path: artifacts/webpack-stats.json
Expand All @@ -448,7 +448,7 @@ jobs:

- name: Upload bundle report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bundle-report
path: artifacts/bundle-report.txt
Expand All @@ -457,7 +457,7 @@ jobs:

- name: Upload build step log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-step-log
path: artifacts/build-step.log
Expand All @@ -466,7 +466,7 @@ jobs:

- name: Upload bundle analysis step log
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bundle-analysis-step-log
path: artifacts/bundle-analysis-step.log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-security-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:

- name: Upload security results as artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: security-check-results
path: |
Expand Down