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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
run: npm audit --omit=dev --audit-level=high

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist
path: |
Expand All @@ -140,7 +140,7 @@ jobs:

- name: Upload reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports
path: |
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:

- name: Upload a11y report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports-a11y
path: |
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:

- name: Upload visual report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports-visual
path: |
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:

- name: Upload performance report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports-perf
path: |
Expand Down Expand Up @@ -375,7 +375,7 @@ jobs:

- name: Upload LSAT QA reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports-lsat-qa
path: |
Expand Down Expand Up @@ -521,7 +521,7 @@ jobs:

- name: Upload LSAT reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports-lsat
path: |
Expand Down Expand Up @@ -625,7 +625,7 @@ jobs:

- name: Upload backend coverage report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: reports-lsat-backend-coverage
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mutation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Upload mutation reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: mutation-reports
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ jobs:
} >> "$GITHUB_STEP_SUMMARY"

- name: Upload Bundles
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: studyvault-${{ matrix.id }}${{ steps.onb.outputs.rag_enabled == 'true' && '' || '-norag' }}
path: |
Expand Down
Loading