+1
-7
.github/workflows/ci.yml
+1
-7
.github/workflows/ci.yml
···
236
236
- name: Install and configure cargo-audit
237
237
run: |
238
238
cargo install cargo-audit
239
-
cargo audit fetch
240
239
241
240
- name: Run Rust security audit
242
241
run: |
243
-
for dir in services/ apps/aqua/; do
244
-
if [ -f "$dir/Cargo.toml" ]; then
245
-
echo "Running security audit for $dir"
246
-
(cd "$dir" && cargo audit --deny-warnings --deny-unmaintained)
247
-
fi
248
-
done
242
+
cargo audit
249
243
250
244
- name: Run Node.js security audit
251
245
run: pnpm audit --audit-level=high