We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4974b21 + 726a303 commit 0eff98eCopy full SHA for 0eff98e
.github/workflows/audit.yml
@@ -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
15
16
17
+ - uses: actions/setup-node@v4
18
+ with: { node-version: '22' }
19
+ - run: npm audit --audit-level=high
0 commit comments