Skip to content

Commit

Permalink
[CVE] Address CVE-2023-6378 issue (#1053)
Browse files Browse the repository at this point in the history
Signed-off-by: Eric <[email protected]>
(cherry picked from commit 06f01f1)
  • Loading branch information
mengweieric authored and github-actions[bot] committed Dec 4, 2024
1 parent 342bcad commit 88b3607
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test and Build Reports Scheduler
on: [push, pull_request]

env:
OPENSEARCH_VERSION: '1.3.5-SNAPSHOT'
OPENSEARCH_VERSION: '1.3.20-SNAPSHOT'

jobs:
linux-build:
Expand Down
7 changes: 6 additions & 1 deletion reports-scheduler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,12 @@ dependencies {
testCompile "org.mockito:mockito-core:3.12.4"
testCompile 'com.google.code.gson:gson:2.8.9'

ktlint "com.pinterest:ktlint:0.45.1"
add("ktlint", "com.pinterest:ktlint:0.45.1") {
exclude group: "ch.qos.logback", module: "logback-classic"
exclude group: "ch.qos.logback", module: "logback-core"
}
add("ktlint", "ch.qos.logback:logback-core:1.2.13")
add("ktlint", "ch.qos.logback:logback-classic:1.2.13")
}

javadoc.enabled = false // turn off javadoc as it barfs on Kotlin code
Expand Down

0 comments on commit 88b3607

Please sign in to comment.