Skip to content

Commit

Permalink
Merge branch 'ignore-atty-vuln'
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed Nov 24, 2022
2 parents 865f896 + bcb4d1d commit dc1a1a9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cargo-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ jobs:
version: latest

- name: Audit
# TEMP: Ignore the time segfault CVE since there are no known
# RUSTSEC-2020-0071: Ignore the time segfault CVE since there are no known
# good workarounds, and we want logs etc to be in local time.
run: cargo audit --ignore RUSTSEC-2020-0071
# RUSTSEC-2021-0145: The vulnerability affects custom global allocators,
# so it should be safe to ignore it. Stop ignoring the warning once
# atty has been replaced in clap and env_logger:
# https://github.com/clap-rs/clap/pull/4249
# https://github.com/rust-cli/env_logger/pull/246
run: cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2021-0145

0 comments on commit dc1a1a9

Please sign in to comment.