This repository was archived by the owner on Jan 18, 2024. It is now read-only.
File tree 5 files changed +8
-9
lines changed
5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
17
17
18
18
strategy :
19
19
matrix :
20
- java : [8, 11, 17]
20
+ java : [8, 11, 17, 21 ]
21
21
java-package : [jdk]
22
22
distribution : [temurin]
23
23
24
24
steps :
25
25
- uses : actions/checkout@v4
26
26
27
27
- name : Set up JDK
28
- uses : actions/setup-java@v3
28
+ uses : actions/setup-java@v4
29
29
with :
30
30
distribution : ${{ matrix.distribution }}
31
31
java-version : ${{ matrix.java }}
Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@v4
16
16
17
17
- name : Set up JDK
18
- uses : actions/setup-java@v3
18
+ uses : actions/setup-java@v4
19
19
with :
20
20
distribution : ' temurin'
21
21
java-version : ' 8'
@@ -106,7 +106,7 @@ jobs:
106
106
git pull
107
107
108
108
- name : Set up JDK OSSRH
109
- uses : actions/setup-java@v3
109
+ uses : actions/setup-java@v4
110
110
with : # running setup-java again overwrites the settings.xml
111
111
distribution : ' temurin'
112
112
java-version : ' 8'
@@ -137,7 +137,7 @@ jobs:
137
137
git pull
138
138
139
139
- name : Set up JDK
140
- uses : actions/setup-java@v3
140
+ uses : actions/setup-java@v4
141
141
with :
142
142
distribution : ' temurin'
143
143
java-version : ' 8'
Original file line number Diff line number Diff line change 10
10
- uses : actions/checkout@v4
11
11
12
12
- name : Set up JDK OSSRH
13
- uses : actions/setup-java@v3
13
+ uses : actions/setup-java@v4
14
14
with : # running setup-java again overwrites the settings.xml
15
15
distribution : ' temurin'
16
16
java-version : ' 8'
Original file line number Diff line number Diff line change 86
86
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
87
87
run : |
88
88
gh_pr_up() {
89
- gh pr create "$ @" || gh pr edit "$@"
89
+ gh pr create -H "${{ env.UPDATE_BRANCH }}" "$ @" || (git checkout "${{ env.UPDATE_BRANCH }}" && gh pr edit "$@")
90
90
}
91
91
gh_pr_up -B "${{ steps.main.outputs.current_branch }}" \
92
- -H "${{ env.UPDATE_BRANCH }}" \
93
92
--title "Update from template" \
94
93
--body "An automated PR to sync changes from the template into this repo"
Original file line number Diff line number Diff line change 154
154
<plugin >
155
155
<groupId >org.apache.maven.plugins</groupId >
156
156
<artifactId >maven-javadoc-plugin</artifactId >
157
- <version >3.6.0 </version >
157
+ <version >3.6.3 </version >
158
158
<executions >
159
159
<execution >
160
160
<id >attach-javadocs</id >
You can’t perform that action at this time.
0 commit comments