Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Upload accessibility reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: accessibility-reports
path: axe-reports/
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:

- name: Upload Pa11y results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pa11y-results
path: pa11y-results.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results-${{ matrix.node-version }}
path: |
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
ls -la dist/

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-${{ matrix.node-version }}
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
npm test -- --run --coverage

- name: Upload coverage reports
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-report
path: coverage/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:

- name: Upload bundle report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bundle-report
path: bundle-report.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

- name: Upload Semgrep results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: semgrep-results
path: semgrep-results.json
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:

- name: Upload Snyk results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: snyk-results
path: snyk-results.json
Expand Down
Loading