Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/ci_gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up JDK 11
uses: actions/setup-java@v3
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle
uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
with:
arguments: build
gradle-version: 8.5

run: ./gradlew build
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,11 @@ allprojects {
resolutionStrategy {
// version overrides for CVE fixes
force 'org.apache.commons:commons-lang3:3.18.0' // CVE-2025-48924
force "ch.qos.logback:logback-classic:1.3.15" // CVE-2024-12798, CVE-2024-12801
force 'ch.qos.logback:logback-classic:1.3.15' // CVE-2024-12798, CVE-2024-12801
force 'com.google.code.gson:gson:2.13.1' // CVE-2025-53864

// JDK 25 fix for spotless plugin
force 'com.google.googlejavaformat:google-java-format:1.27.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencyResolutionManagement {
// do not upgrade openapi, doing so will break compatibility with customers using SpringBoot 2.5.x
// (newer 5.x.x generators use APIs not present in okhttp 3.14.9)
version('openapi.generator', '4.3.1')
version('spotless', '7.1.0')
version('spotless', '7.2.1')
version('depsize', '0.2.0')
version('spotbugs', '6.2.3')
version('depcheck', '12.1.3')
Expand Down