File tree 4 files changed +12
-12
lines changed
4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -58,11 +58,11 @@ jobs:
58
58
# If the Autobuild fails above, remove it and uncomment the following three lines.
59
59
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
60
60
61
- - name : Set up JDK 17
61
+ - name : Set up JDK 21
62
62
uses : actions/setup-java@v4
63
63
with :
64
- java-version : ' 17 '
65
- distribution : ' temurin '
64
+ java-version : ' 21 '
65
+ distribution : ' corretto '
66
66
- name : Set up Gradle
67
67
uses : gradle/actions/setup-gradle@v4
68
68
- name : Validate Gradle wrapper
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ jobs:
31
31
runs-on : ubuntu-latest
32
32
steps :
33
33
- uses : actions/checkout@v4
34
- - name : Set up JDK 17
34
+ - name : Set up JDK 21
35
35
uses : actions/setup-java@v4
36
36
with :
37
- java-version : ' 17 '
38
- distribution : ' temurin '
37
+ java-version : ' 21 '
38
+ distribution : ' corretto '
39
39
- name : Set up Gradle
40
40
uses : gradle/actions/setup-gradle@v4
41
41
- name : Validate Gradle wrapper
@@ -57,11 +57,11 @@ jobs:
57
57
if : github.event_name == 'pull_request'
58
58
steps :
59
59
- uses : actions/checkout@v4
60
- - name : Set up JDK 17
60
+ - name : Set up JDK 21
61
61
uses : actions/setup-java@v4
62
62
with :
63
- java-version : ' 17 '
64
- distribution : ' temurin '
63
+ java-version : ' 21 '
64
+ distribution : ' corretto '
65
65
- name : Set up Gradle
66
66
uses : gradle/actions/setup-gradle@v4
67
67
- name : Validate Gradle wrapper
Original file line number Diff line number Diff line change 1
- FROM amazoncorretto:17 -alpine AS build
1
+ FROM amazoncorretto:21 -alpine AS build
2
2
COPY . /usr/src/app/
3
3
WORKDIR /usr/src/app
4
4
COPY --chown=gradle:gradle . /home/gradle/src
@@ -7,7 +7,7 @@ WORKDIR /home/gradle/src
7
7
# and boot JAR by default.
8
8
RUN ./gradlew buildFatJar --no-daemon
9
9
10
- FROM amazoncorretto:17 -alpine AS runtime
10
+ FROM amazoncorretto:21 -alpine AS runtime
11
11
EXPOSE 8080:8080
12
12
RUN apk add curl
13
13
RUN mkdir /app
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ tasks.test {
68
68
}
69
69
70
70
kotlin {
71
- jvmToolchain(17 )
71
+ jvmToolchain(21 )
72
72
73
73
sourceSets {
74
74
all {
You can’t perform that action at this time.
0 commit comments