From 2777776b330ee8dce855d943d5a217ff35df2327 Mon Sep 17 00:00:00 2001 From: Iwan Eising Date: Wed, 15 Apr 2026 23:04:37 +0200 Subject: [PATCH 1/2] fix(workflow): remove maintenance branch from push ignore list Signed-off-by: Iwan Eising --- .github/workflows/jacoco-exclusion-report-build.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/jacoco-exclusion-report-build.yml b/.github/workflows/jacoco-exclusion-report-build.yml index cde73f0a..bbac1bea 100644 --- a/.github/workflows/jacoco-exclusion-report-build.yml +++ b/.github/workflows/jacoco-exclusion-report-build.yml @@ -3,7 +3,6 @@ on: push: branches-ignore: - main - - maintenance paths: - 'sedr_utils/jacoco-exclusion-report/**' - '.github/workflows/**' From f6e2be71e2e25af00442cc649fc4c1ad2d5a02c6 Mon Sep 17 00:00:00 2001 From: Iwan Eising Date: Wed, 15 Apr 2026 23:11:23 +0200 Subject: [PATCH 2/2] fix(jacoco): disable node audit analyzer in OWASP scan --- sedr_utils/jacoco-exclusion-report/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sedr_utils/jacoco-exclusion-report/build.gradle b/sedr_utils/jacoco-exclusion-report/build.gradle index bf363ef5..632c3c17 100644 --- a/sedr_utils/jacoco-exclusion-report/build.gradle +++ b/sedr_utils/jacoco-exclusion-report/build.gradle @@ -29,6 +29,10 @@ dependencyCheck { nvd { apiKey = System.getenv('NVD_APIKEY_SEDR') } + analyzers { + nodeAuditEnabled = false + nodeEnabled = false + } } dependencies {