File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
11
11
12
12
steps :
13
13
- uses : actions/checkout@v4
14
- - name : Set up JDK 11
14
+ - name : Set up JDK 17
15
15
uses : actions/setup-java@v4
16
16
with :
17
17
distribution : ' adopt'
18
- java-version : ' 11 '
18
+ java-version : ' 17 '
19
19
- name : Set RELEASE_VERSION from tag
20
20
run : echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
21
21
- name : Print version
25
25
run : mvn -B package --file pom.xml
26
26
- name : Upload artifact
27
27
uses : actions/upload-artifact@v4
28
- with :
28
+ with :
29
29
name : target
30
30
path : ${{ github.workspace }}/target/**/*
31
31
- name : Extract changelog content
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
uses : actions/setup-java@v4
18
18
with :
19
19
distribution : ' adopt'
20
- java-version : ' 11 '
20
+ java-version : ' 17 '
21
21
- name : Build with Maven
22
22
run : mvn -B package --file pom.xml
23
23
- name : Upload artifact
24
24
uses : actions/upload-artifact@v4
25
- with :
25
+ with :
26
26
name : target
27
27
path : ${{ github.workspace }}/target/**/*
Original file line number Diff line number Diff line change 101
101
<artifactId >maven-compiler-plugin</artifactId >
102
102
<version >${maven-compiler-plugin.version} </version >
103
103
<configuration >
104
- <release >11 </release >
104
+ <release >17 </release >
105
105
</configuration >
106
106
</plugin >
107
107
<plugin >
You can’t perform that action at this time.
0 commit comments