Skip to content

Commit db3a4fa

Browse files
committed
Constrain build dependency to address security vulnerability
1 parent 973ccb8 commit db3a4fa

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

plugin/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ buildscript {
1212
}
1313
dependencies {
1414
constraints {
15-
// The plugin com.github.breadmoirai.github-release:2.5.2 has dependency on com.squareup.okio:okio:3.0.0
16-
// which has reported vulnerability CVE-2023-3635. Use a newer version.
15+
// The plugin com.github.breadmoirai.github-release:2.5.2 depends on vulnerable library releases.
16+
// We constrain these to newer, patched versions.
1717
classpath(libs.okio)
18+
classpath(libs.apache.commons.io)
1819
}
1920
}
2021
}

0 commit comments

Comments
 (0)