File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : " Cargo Deny"
2+ on :
3+ push :
4+ paths :
5+ # Run if workflow changes
6+ - ' .github/workflows/cargo-deny.yml'
7+ # Run on changed dependencies
8+ - ' **/Cargo.toml'
9+ - ' **/Cargo.lock'
10+ # Run if the configuration file changes
11+ - ' deny.toml'
12+ # Rerun periodically to pick up new advisories
13+ schedule :
14+ - cron : ' 0 0 * * *'
15+ # Run manually
16+ workflow_dispatch :
17+
18+ jobs :
19+ deny :
20+ runs-on : ubuntu-latest
21+ permissions :
22+ contents : read
23+ steps :
24+ - uses : actions/checkout@v4
25+ # https://github.com/EmbarkStudios/cargo-deny-action v2.0.15
26+ - uses : EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979
27+ with :
28+ command : check advisories
Original file line number Diff line number Diff line change 1+ [advisories ]
2+ # Deny yanked crates to catch supply chain issues early.
3+ yanked = " deny"
4+ # Emulate cargo-audit which only checks vulnerabilities and yanked crates, not unmaintained/unsound.
5+ unmaintained = " none"
6+ unsound = " none"
You can’t perform that action at this time.
0 commit comments