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/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,15 +120,15 @@ jobs:
run: npx playwright test --project=${{ matrix.project }}

- name: Upload Playwright Test Report Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: always()
with:
name: playwright-report-${{ matrix.project }}
path: playwright-report/
retention-days: 14

- name: Upload Failure Traces & Screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: failure()
with:
name: test-results-${{ matrix.project }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: go test -run '^$' -bench . -benchmem -benchtime 50x ./cache ./ai/vector | tee bench.txt

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: benchmarks-${{ github.run_id }}
path: bench.txt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
./scripts/build_release.sh

- name: Upload macOS Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: libs-macos
path: |
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
./scripts/build_release.sh

- name: Upload Linux/Windows Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: libs-linux-win
path: |
Expand Down
Loading