From fb2275220412f887b634e63c8adb679296e7fd9c Mon Sep 17 00:00:00 2001 From: Phoeniix Zhao Date: Sun, 7 Apr 2024 20:28:29 +0800 Subject: [PATCH] ci: ignore RUSTSEC-2024-0332 in audit remove `--ignore` option when pr(when https://github.com/hyperium/tonic/pull/1670) is merged. Signed-off-by: Phoeniix Zhao --- .github/workflows/pull_request.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 820ec1aeb..4a61741c9 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -49,7 +49,8 @@ jobs: run: ci/scripts/check-trailing-spaces.sh - name: Audit - run: cargo audit + # remove `--ignore` when https://github.com/hyperium/tonic/pull/1670 is merged + run: cargo audit --ignore RUSTSEC-2024-0332 - name: Format run: cargo fmt --all -- --check