From df71b1b5be4f8e44374a19c37048f733412a01e7 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Wed, 29 Nov 2023 10:10:22 +0800 Subject: [PATCH 1/2] patch --- ci/scripts/check.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/scripts/check.sh b/ci/scripts/check.sh index 2d194c40e2e99..d46c845676936 100755 --- a/ci/scripts/check.sh +++ b/ci/scripts/check.sh @@ -50,4 +50,5 @@ sccache --zero-stats echo "--- Run audit check" cargo audit \ - --ignore RUSTSEC-2023-0052 # https://github.com/risingwavelabs/risingwave/issues/11842 + --ignore RUSTSEC-2023-0052 # https://github.com/risingwavelabs/risingwave/issues/11842 \ + --ignore RUSTSEC-2023-0071 # https://github.com/risingwavelabs/risingwave/issues/13703 From cd91dc2e4b43828e675cd93649c4857b67b1eac9 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Wed, 29 Nov 2023 10:55:45 +0800 Subject: [PATCH 2/2] 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