-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 1 KB
/
security.yml
File metadata and controls
42 lines (38 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Security Audit
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
# Run security audit daily at 00:00 UTC
- cron: '0 0 * * *'
jobs:
cargo-audit:
name: Cargo Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: rustsec/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
cargo-deny:
name: Cargo Deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: EmbarkStudios/cargo-deny-action@v2
with:
log-level: warn
command: check
arguments: --all-features
security-tests:
name: Security Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@stable
- name: Run IPL parser fuzz tests
run: cargo test --package infera-core --test ipl_parser_fuzz
- name: Run WASM sandbox security tests
run: cargo test --package infera-wasm --test sandbox_security