Skip to content

Commit

Permalink
Bump transitive build and test dependencies to fix security vulnerabi…
Browse files Browse the repository at this point in the history
…lities.
  • Loading branch information
smarkwal committed Apr 15, 2024
1 parent a1b66e5 commit 3034f9e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ plugins {

}

buildscript {
dependencies {
// fix CVE-2023-3635 in Okio < 3.4.0
// (indirect dependency of Gradle Versions Plugin 0.51.0)
classpath("com.squareup.okio:okio:3.9.0")
classpath("com.squareup.okio:okio-jvm:3.9.0")
}
}

allprojects {

// load user-specific properties -------------------------------------------
Expand Down
4 changes: 4 additions & 0 deletions jarhc-release-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ dependencies {
runtimeOnly("org.slf4j:slf4j-api:2.0.13")
runtimeOnly("org.slf4j:slf4j-simple:2.0.13")

// fix CVE-2024-25710 and CVE-2024-26308 in Commons Compress < 1.26.0
// (dependency of Testcontainers 1.19.7)
implementation("org.apache.commons:commons-compress:1.26.1")

}

// plugin configurations -------------------------------------------------------
Expand Down

0 comments on commit 3034f9e

Please sign in to comment.