From 038076cbec9f855fa1cb79bffdac492529bb5256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Fri, 29 Sep 2023 14:46:27 +0200 Subject: [PATCH 1/2] update audit ignore --- .cargo/audit.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index db49f45fa2..fd7d0f076a 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -2,4 +2,5 @@ ignore = [ "RUSTSEC-2021-0127", # serde_cbor is unmaintained https://github.com/iotaledger/identity.rs/issues/518 "RUSTSEC-2023-0052", # temporary ignore until fix is provided + "RUSTSEC-2023-0065", # temporary ignore until fix is provided ] From 81cb8f665fe2c94f0efd1401e3d41b156368c045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Fri, 29 Sep 2023 14:50:07 +0200 Subject: [PATCH 2/2] update cargo audit workflow paths --- .github/workflows/audit.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 91eb824a51..3ad214f1bf 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -10,6 +10,7 @@ on: - "**/Cargo.lock" - "**/Cargo.toml" - ".github/workflows/audit.yml" + - ".cargo/audit.toml" pull_request: branches: - main @@ -17,6 +18,7 @@ on: - "**/Cargo.lock" - "**/Cargo.toml" - ".github/workflows/audit.yml" + - ".cargo/audit.toml" jobs: audit: