From cd91dc2e4b43828e675cd93649c4857b67b1eac9 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Wed, 29 Nov 2023 10:55:45 +0800 Subject: [PATCH] fix --- ci/scripts/check.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci/scripts/check.sh b/ci/scripts/check.sh index d46c845676936..f0a1d02ee20e9 100755 --- a/ci/scripts/check.sh +++ b/ci/scripts/check.sh @@ -48,7 +48,9 @@ echo "--- Show sccache stats" sccache --show-stats sccache --zero-stats +# RUSTSEC-2023-0052: https://github.com/risingwavelabs/risingwave/issues/11842 +# RUSTSEC-2023-0071 https://github.com/risingwavelabs/risingwave/issues/13703 echo "--- Run audit check" cargo audit \ - --ignore RUSTSEC-2023-0052 # https://github.com/risingwavelabs/risingwave/issues/11842 \ - --ignore RUSTSEC-2023-0071 # https://github.com/risingwavelabs/risingwave/issues/13703 + --ignore RUSTSEC-2023-0052 \ + --ignore RUSTSEC-2023-0071