From dfeef6df8376bb7c7b37bef45acef06e2826bbe3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 20 Sep 2025 10:06:30 +0530 Subject: [PATCH] Ignore CVE that does not apply --- .github/workflows/ci.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index c27726b4c..a584412cd 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -207,6 +207,7 @@ IGNORED_DEPENDENCY_CVES = [ # Python stdlib 'CVE-2025-8194', # DoS in tarfile 'CVE-2025-6069', # DoS in HTMLParser + 'CVE-2025-4056', # Only affects Windows, on which we dont run ]