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/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
STORYBOOK_DISABLE_TELEMETRY: 1

- name: Upload Storybook artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: storybook-static
path: storybook-static/
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
VITE_API_DEBUG: false

- name: Upload production build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: production-build
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-offline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Upload results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: offline-test-results
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
continue-on-error: true

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-output
path: dist/
Expand All @@ -62,15 +62,15 @@ jobs:
continue-on-error: true

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: frontend-test-results
path: junit.xml
retention-days: 30

- name: Upload coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: frontend-coverage-report
Expand Down Expand Up @@ -124,15 +124,15 @@ jobs:
-v

- name: Upload backend test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: backend-test-results
path: backend/pytest-results.xml
retention-days: 30

- name: Upload backend coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: backend-coverage-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/offline-guarantee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
cat offline-reports/offline_guarantee_report.md

- name: Upload offline report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: offline-guarantee-report
path: offline-reports/
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
fi

- name: Upload fallback results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: fallback-test-results
path: fallback-test-results.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ jobs:
if: always()

- name: Upload performance report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: performance-reports
path: performance-reports/
if: always()

- name: Upload junit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: test-results
path: junit.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: twine check dist/*

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: python-package-distributions
path: dist/
Expand Down
Loading