diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2021-10-27 15:00:21 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2021-10-27 15:00:21 +0200 |
| commit | b7677912e5557d0e5f7a2ebc0290041a3bece5af (patch) | |
| tree | b5885145fe07ef6ab23f41e3cef7522bd1b8f5f3 | |
| parent | 79105b8e1cdf5350b60ff95be6c6e89437cce593 (diff) | |
| parent | 270be1681d105549acf68d717bb74df9e746ef8a (diff) | |
| download | mullvadvpn-b7677912e5557d0e5f7a2ebc0290041a3bece5af.tar.xz mullvadvpn-b7677912e5557d0e5f7a2ebc0290041a3bece5af.zip | |
Merge branch 'ignore-time-chrono-cve-in-ci'
| -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 |
