File tree 6 files changed +9
-9
lines changed
6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ permissions:
7
7
contents : read
8
8
9
9
env :
10
- JDK : ' 17 '
10
+ JDK : ' 21 '
11
11
DISTRIBUTION : ' zulu'
12
12
GRADLE_COMMAND : ' ./gradlew --no-daemon'
13
13
Original file line number Diff line number Diff line change 32
32
uses : actions/setup-java@v4
33
33
with :
34
34
distribution : ' temurin'
35
- java-version : 17
35
+ java-version : 21
36
36
cache : ' gradle'
37
37
- name : Build snapshot
38
38
run : ./gradlew build snapshot -Prelease.version="$BUILD_VERSION"
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
strategy :
9
9
matrix :
10
- java : [17, 21]
10
+ java : [21]
11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
with :
Original file line number Diff line number Diff line change 20
20
uses : actions/setup-java@v4
21
21
with :
22
22
distribution : ' temurin'
23
- java-version : 17
23
+ java-version : 21
24
24
cache : ' gradle'
25
25
- name : Build candidate
26
26
if : contains(github.ref, '-rc.')
Original file line number Diff line number Diff line change 20
20
uses : actions/setup-java@v4
21
21
with :
22
22
distribution : ' temurin'
23
- java-version : 17
23
+ java-version : 21
24
24
cache : ' gradle'
25
25
- name : Build snapshot
26
26
run : ./gradlew build snapshot
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ ext.githubProjectName = rootProject.name
18
18
19
19
idea {
20
20
project {
21
- languageLevel = ' 17 '
21
+ languageLevel = ' 21 '
22
22
}
23
23
}
24
24
@@ -67,12 +67,12 @@ subprojects {
67
67
68
68
group = " com.netflix.${ githubProjectName} "
69
69
70
- sourceCompatibility = ' 17 '
71
- targetCompatibility = ' 17 '
70
+ sourceCompatibility = ' 21 '
71
+ targetCompatibility = ' 21 '
72
72
73
73
java {
74
74
toolchain {
75
- languageVersion = JavaLanguageVersion . of(17 )
75
+ languageVersion = JavaLanguageVersion . of(21 )
76
76
}
77
77
}
78
78
You can’t perform that action at this time.
0 commit comments