summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDavid Lönnhager <david.l@mullvad.net>2022-11-24 13:09:24 +0100
committerDavid Lönnhager <david.l@mullvad.net>2022-11-24 13:09:24 +0100
commitdc1a1a9df7c95fbfb7a7cd91a7cea5dd96e10933 (patch)
tree6ad541c5de4c1dd73c4ea0b48ad3f0c148a65d73
parent865f896eb68db1053284560945bd917ee7832722 (diff)
parentbcb4d1d12522a333fb2106feb675e5b485b1b178 (diff)
downloadmullvadvpn-dc1a1a9df7c95fbfb7a7cd91a7cea5dd96e10933.tar.xz
mullvadvpn-dc1a1a9df7c95fbfb7a7cd91a7cea5dd96e10933.zip
Merge branch 'ignore-atty-vuln'
-rw-r--r--.github/workflows/cargo-audit.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml
index dff6731c44..9ef1d756be 100644
--- a/.github/workflows/cargo-audit.yml
+++ b/.github/workflows/cargo-audit.yml
@@ -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