summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-04-24 12:06:08 +0200
committerPaul-Christian Volkmer2024-05-31 12:44:19 +0200
commitdad3ea80ee3f532eb8a92e17765802142dda7040 (patch)
treeaece373063b9c7cd2315cb2f4034726fa0cd61e1
parent01446bdece9478c71c829111f985264ebd925c2b (diff)
chore: update integration test dependency
This mitigates CVE-204-26308 and CVE-2024-25710
-rw-r--r--build.gradle.kts2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
index b8da6db..8e920b9 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -85,6 +85,8 @@ dependencies {
testImplementation("org.mockito.kotlin:mockito-kotlin:${versions["mockito-kotlin"]}")
integrationTestImplementation("org.testcontainers:junit-jupiter")
integrationTestImplementation("org.testcontainers:postgresql")
+ // Override dependency version from org.testcontainers:junit-jupiter - CVE-204-26308, CVE-2024-25710
+ integrationTestImplementation("org.apache.commons:commons-compress:1.26.1")
}
tasks.withType<KotlinCompile> {