summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-10-26 11:52:23 -0400
committerDan Davison <dandavison7@gmail.com>2021-10-26 12:04:29 -0400
commite6928049910c9051bb27a1f653281ed1d30d9b65 (patch)
tree07239c315c582d9d1c940be6c4988c46ee104f4c
parent8886648374e59cb27ff6dfd240a7b7207a617bfd (diff)
Ignore RUSTSEC-2020-0071
- Run audit when changing audit.toml
-rw-r--r--.cargo/audit.toml2
-rw-r--r--.github/workflows/audit.yml1
2 files changed, 2 insertions, 1 deletions
diff --git a/.cargo/audit.toml b/.cargo/audit.toml
index 2e95f789..ddafc424 100644
--- a/.cargo/audit.toml
+++ b/.cargo/audit.toml
@@ -1,4 +1,4 @@
# See https://github.com/rustsec/rustsec/blob/main/cargo-audit/audit.toml.example
[advisories]
-ignore = ["RUSTSEC-2020-0159"]
+ignore = ["RUSTSEC-2020-0159", "RUSTSEC-2020-0071"]
diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml
index 52ea0142..175c2c9b 100644
--- a/.github/workflows/audit.yml
+++ b/.github/workflows/audit.yml
@@ -8,6 +8,7 @@ on:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
+ - '**/audit.toml'
jobs:
audit: