Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.
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/benchmark-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ jobs:
--cov-report=term-missing

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: test-results-py${{ matrix.python-version }}
path: trinity/output/fpga/driver/python/test-results/
retention-days: 7

- name: Upload coverage
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: matrix.python-version == '3.11'
with:
name: coverage-report
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-compiler-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fi

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.binary_name }}
path: ${{ matrix.binary_name }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
./${{ matrix.binary_name }} --version 2>/dev/null || echo "Version check failed but continuing"

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.binary_name }}
path: ${{ matrix.binary_name }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: cargo tauri build

- name: Upload macOS DMG
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: vibee-browser-macos
path: vibee-browser/src-tauri/target/release/bundle/dmg/*.dmg
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: cargo tauri build

- name: Upload Windows artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: vibee-browser-windows
path: |
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: cargo tauri build

- name: Upload Linux artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: vibee-browser-linux
path: |
Expand Down
Loading