File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ jobs:
62
62
)
63
63
steps :
64
64
- uses : actions/checkout@v2
65
- - name : Set up JDK 11
65
+ - name : Set up JDK 21
66
66
uses : actions/setup-java@v2
67
67
with :
68
- java-version : 11
69
- distribution : ' adopt '
68
+ distribution : ' temurin '
69
+ java-version : ' 21 '
70
70
- uses : actions/cache@v3
71
71
with :
72
72
path : ~/.m2/repository
Original file line number Diff line number Diff line change 18
18
run : |
19
19
git config --global user.email "[email protected] "
20
20
git config --global user.name "stable-release-bot"
21
+ - name : Set up JDK 21
22
+ uses : actions/setup-java@v2
23
+ with :
24
+ distribution : ' temurin'
25
+ java-version : ' 21'
26
+ cache : ' maven'
21
27
- name : Maven Prepare Release
22
28
id : maven_prepare_release
23
29
run : |
31
37
git push
32
38
git push origin $version_number
33
39
echo "version_number=$version_number" >> $GITHUB_OUTPUT
34
- - name : Set up JDK 21
35
- uses : actions/setup-java@v2
36
- with :
37
- distribution : ' temurin'
38
- java-version : ' 21'
39
- cache : ' maven'
40
40
- name : Build
41
41
run : |
42
42
./mvnw clean install -B -DskipTests -P exec-jar
You can’t perform that action at this time.
0 commit comments