File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,12 @@ jobs:
25
25
- uses : actions/checkout@v3
26
26
with :
27
27
submodules : true
28
- - name : Set up JDK 11
29
- uses : actions/setup-java@v3
28
+ - name : Setup Java
29
+ uses : actions/setup-java@v4
30
30
with :
31
- java-version : ' 11'
32
31
distribution : ' temurin'
32
+ java-version : 17
33
+ - name : Setup Gradle
34
+ uses : gradle/actions/setup-gradle@v4
33
35
- name : Build with Gradle
34
- uses : gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0
35
- with :
36
- arguments : build
37
- gradle-version : 8.5
38
-
36
+ run : ./gradlew build
Original file line number Diff line number Diff line change @@ -42,8 +42,11 @@ allprojects {
42
42
resolutionStrategy {
43
43
// version overrides for CVE fixes
44
44
force ' org.apache.commons:commons-lang3:3.18.0' // CVE-2025-48924
45
- force " ch.qos.logback:logback-classic:1.3.15" // CVE-2024-12798, CVE-2024-12801
45
+ force ' ch.qos.logback:logback-classic:1.3.15' // CVE-2024-12798, CVE-2024-12801
46
46
force ' com.google.code.gson:gson:2.13.1' // CVE-2025-53864
47
+
48
+ // JDK 25 fix for spotless plugin
49
+ force ' com.google.googlejavaformat:google-java-format:1.27.0'
47
50
}
48
51
}
49
52
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ dependencyResolutionManagement {
38
38
// do not upgrade openapi, doing so will break compatibility with customers using SpringBoot 2.5.x
39
39
// (newer 5.x.x generators use APIs not present in okhttp 3.14.9)
40
40
version(' openapi.generator' , ' 4.3.1' )
41
- version(' spotless' , ' 7.1.0 ' )
41
+ version(' spotless' , ' 7.2.1 ' )
42
42
version(' depsize' , ' 0.2.0' )
43
43
version(' spotbugs' , ' 6.2.3' )
44
44
version(' depcheck' , ' 12.1.3' )
You can’t perform that action at this time.
0 commit comments