diff options
| -rw-r--r-- | .github/workflows/cargo-audit.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml index a3425f943c..8120c5daf6 100644 --- a/.github/workflows/cargo-audit.yml +++ b/.github/workflows/cargo-audit.yml @@ -21,4 +21,6 @@ jobs: version: latest - name: Audit - run: cargo audit + # TEMP: Ignore the time/chrono segfault CVEs since there are no known + # good workarounds, and we want logs etc to be in local time. + run: cargo audit --ignore RUSTSEC-2020-0159 --ignore RUSTSEC-2020-0071 |
