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
2 changes: 1 addition & 1 deletion .github/workflows/backup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:

- name: Upload backup artifacts (for debugging)
if: failure() && steps.check-config.outputs.configured == 'true'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: backup-logs
path: /tmp/backups/*.log
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ jobs:
run: npx turbo run build

- name: Upload build artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-artifacts
path: |
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:

- name: Upload license report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: license-report
path: license-report.csv
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
cat bundle-size-report.md

- name: Upload bundle size report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: bundle-size-report
path: bundle-size-report.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-cloudflare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ jobs:
run: npm run build

- name: Upload build artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
echo "Deploy type: ${{ github.event.inputs.deploy_type }}"

- name: Upload build artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: build-artifacts
path: packages/*/dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/develop-comprehensive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:

- name: Upload build artifacts
if: success()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: comprehensive-build-artifacts
path: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,31 +131,31 @@ jobs:

- name: Upload HTML test report
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-report-${{ matrix.browser }}
path: playwright-report/
retention-days: 30

- name: Upload JUnit test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: junit-results-${{ matrix.browser }}
path: test-results/junit.xml
retention-days: 30

- name: Upload test videos
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-videos-${{ matrix.browser }}
path: test-results/
retention-days: 7

- name: Upload screenshots
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-screenshots-${{ matrix.browser }}
path: test-results/**/*.png
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: playwright-report-mobile
path: playwright-report/
Expand All @@ -276,7 +276,7 @@ jobs:
find artifacts -name "*.json" -exec cp {} merged-report/ \;

- name: Upload merged report
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: e2e-test-report-merged
path: merged-report/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: ./scripts/performance-baseline.sh

- name: Upload results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: load-test-results
path: tests/load/results/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/secrets-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Upload Gitleaks report
if: steps.gitleaks.outcome == 'failure'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: gitleaks-report
path: gitleaks-report.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/visual-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

- name: Upload diff screenshots
if: failure()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: visual-diff-screenshots
path: |
Expand All @@ -107,7 +107,7 @@ jobs:

- name: Upload baseline screenshots
if: ${{ inputs.update_baselines }}
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: updated-baselines
path: e2e/tests/visual-showcase.spec.ts-snapshots/
Expand Down
Loading