fix(ci): patch 4 transitive CVEs + consume analyzer override#4
Merged
Conversation
…sable
Three changes, following the validated pattern from mask-utils PR#6
and api-standard PR#3:
1. configurations.all { resolutionStrategy.eachDependency { ... } }:
force-patch httpcore 4.4.16, httpcore5 5.4.2, plexus-utils 3.5.1,
commons-beanutils 1.11.0 globally so every classpath reflects the
patched state. Without this the OWASP gate fails on the same 4 CVEs
(CVE-2026-54428, CVE-2026-54399, CVE-2025-67030 RCE, CVE-2025-48734
RCE) that surfaced in mask-utils#6.
2. scanConfigurations = listOf(compileClasspath, runtimeClasspath):
restrict analysis to configurations that actually propagate to
consumers so the gate reflects real consumer-facing exposure.
3. data.directory + analyzers { ... } + NOVA_OWASP_ANALYZER_OVERRIDE
consumer: align with the shared reusable-owasp-check.yml contract.
Reusable workflow exports the env var from inputs.analyzer-override
(or vars.DEPENDENCY_CHECK_ANALYZERS); empty env var preserves the
current behavior. Some Maven-only tokens (gogradle, yarn, pnpm,
pipenv, poetry, pyinstall, setuptools, clang, haskell, mix, rebar,
cargo) are accepted by the reusable workflow but no-op here because
Gradle 12.2.2 dropped them.
Verified locally: gradlew dependencyCheckAnalyze --no-daemon ->
Found 0 vulnerabilities in project nova-mapper-utils, BUILD SUCCESSFUL
in 23s.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Aplica el mismo patrón validado en mask-utils#6 y api-standard#3:
Local: \gradlew dependencyCheckAnalyze --no-daemon\ -> Found 0 vulnerabilities in project nova-mapper-utils, BUILD SUCCESSFUL in 23s.