Skip to content

Commit e2e67a1

Browse files
committed
fix
1 parent 5f20084 commit e2e67a1

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/owasp-dependency-check-daily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313

1414
jobs:
1515
analyze:
16-
runs-on: otel-linux-latest-8-cores
16+
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919

buildSrc/src/main/kotlin/otel.java-conventions.gradle.kts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,19 @@ afterEvaluate {
191191
}
192192

193193
dependencyCheck {
194-
skipConfigurations = listOf("errorprone", "checkstyle", "annotationProcessor")
194+
skipConfigurations = mutableListOf(
195+
"errorprone",
196+
"checkstyle",
197+
"annotationProcessor",
198+
"moduleAnnotationProcessor",
199+
"testAnnotationProcessor",
200+
"animalsniffer",
201+
"jmhAnnotationProcessor",
202+
"jmhBasedTestAnnotationProcessor",
203+
"jmhCompileClasspath",
204+
"jmhRuntimeClasspath",
205+
"jmhRuntimeOnly")
206+
failBuildOnCVSS = 7.0f // fail on high or critical CVE
195207
failBuildOnCVSS = 7.0f // fail on high or critical CVE
196208
nvd.apiKey = System.getenv("NVD_API_KEY")
197209
nvd.delay = 3500 // until next dependency check release (https://github.com/jeremylong/DependencyCheck/pull/6333)

0 commit comments

Comments
 (0)