Skip to content

Commit 46d2099

Browse files
committed
chore(ci): use --warn unsound in cargo audit
1 parent 11ae11c commit 46d2099

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,10 @@ jobs:
271271
command: cargo install cargo-deny --locked
272272
- run:
273273
name: cargo-deny Checks
274-
command: cargo deny check -s
275-
274+
# `--warn unsound` downgrades RustSec `informational = "unsound"`
275+
# advisories to warnings, they flag API soundness concerns, not
276+
# exploitable vulnerabilities, so we don't want them to fail CI.
277+
command: cargo deny check -s --warn unsound
276278
doc:
277279
docker:
278280
- image: quay.io/influxdb/rust:ci

0 commit comments

Comments
 (0)