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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Upload build artifacts (Linux)
if: matrix.platform == 'ubuntu-22.04'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: linux-build
path: |
Expand All @@ -124,7 +124,7 @@ jobs:

- name: Upload build artifacts (macOS)
if: matrix.platform == 'macos-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: macos-build
path: |
Expand All @@ -133,7 +133,7 @@ jobs:

- name: Upload build artifacts (Windows)
if: matrix.platform == 'windows-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: windows-build
path: |
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}

- name: Upload ARM64 artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.target }}-build
path: src-tauri/target/${{ matrix.target }}/release/bundle/**/*
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
cache: npm
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: frontend-dist
path: dist/
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
with:
tauriScript: npx tauri

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: tauri-${{ matrix.platform }}
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 @@ -157,7 +157,7 @@ jobs:

# Upload artifacts
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.target }}-artifacts
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
cargo audit

- name: Upload audit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: failure()
with:
name: rust-security-audit
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
npm audit --audit-level=high

- name: Upload audit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: failure()
with:
name: npm-security-audit
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
--error || true

- name: Upload Semgrep results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: semgrep-results
path: semgrep-findings.json
Expand Down
Loading