Skip to content

Commit

Permalink
.cargo/audit.toml: fix audit (#1191)
Browse files Browse the repository at this point in the history
Remove legacy ignores and add new ones to fix the build
  • Loading branch information
tony-iqlusion authored Jul 17, 2024
1 parent 84375ff commit e327dec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

[advisories]
ignore = [
"RUSTSEC-2020-0036", # failure
"RUSTSEC-2020-0071", # time
"RUSTSEC-2020-0159", # chrono
"RUSTSEC-2021-0073", # prost-type
"RUSTSEC-2023-0052", # webpki
"RUSTSEC-2024-0336", # rustls
] # advisory IDs to ignore e.g. ["RUSTSEC-2019-0001", ...]
7 changes: 5 additions & 2 deletions .github/workflows/security_audit.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Security Audit
on:
pull_request:
paths: Cargo.lock
paths:
- Cargo.lock
- .cargo/audit.toml
push:
branches: main
paths: Cargo.lock
paths:
- Cargo.lock
schedule:
- cron: "0 0 * * *"

Expand Down

0 comments on commit e327dec

Please sign in to comment.