Skip to content

Commit 0eff98e

Browse files
committed
Merge branch 'worktree-agent-a94f6209'
2 parents 4974b21 + 726a303 commit 0eff98e

File tree

3 files changed

+119
-23
lines changed

3 files changed

+119
-23
lines changed

.github/workflows/audit.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Dependency Audit
2+
on:
3+
schedule:
4+
- cron: '0 9 * * 1' # Weekly Monday 9am UTC
5+
workflow_dispatch:
6+
jobs:
7+
rust-audit:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- run: cargo install cargo-audit
12+
- run: cargo audit --file src-tauri/Cargo.lock
13+
npm-audit:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
18+
with: { node-version: '22' }
19+
- run: npm audit --audit-level=high

0 commit comments

Comments
 (0)