Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
tar czf "${RUNNER_TEMP}/next-build.tar.gz" -C SortVision .next

- name: Upload Next.js build output
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: next-build
path: ${{ runner.temp }}/next-build.tar.gz
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:

- name: Upload QA metrics artifact (for PR / push baselines)
if: (github.event_name == 'push' || github.event_name == 'pull_request') && always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: qa-metrics
path: SortVision/qa-metrics.json
Expand All @@ -252,7 +252,7 @@ jobs:

- name: Upload QA PR comment artifact
if: github.event_name == 'pull_request' && always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: qa-pr-comment
path: SortVision/.qa-pr-comment/
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
# treosh uploads GitHub artifacts before `lhci upload --target=filesystem` writes manifest.json, so the zip
# from uploadArtifacts does not include it. Upload manifest after the action for lighthouse-summary / PR comment.
- name: Upload Lighthouse manifest (for summary)
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: lighthouse-manifest-${{ matrix.variant }}
path: .lighthouseci/manifest.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Upload audit results
if: always()
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: security-audit-results
path: SortVision/audit-results.json
Expand Down
Loading