This repository was archived by the owner on Jan 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ jobs:
1717
1818 strategy :
1919 matrix :
20- java : [8, 11, 17]
20+ java : [8, 11, 17, 21 ]
2121 java-package : [jdk]
2222 distribution : [temurin]
2323
2424 steps :
2525 - uses : actions/checkout@v4
2626
2727 - name : Set up JDK
28- uses : actions/setup-java@v3
28+ uses : actions/setup-java@v4
2929 with :
3030 distribution : ${{ matrix.distribution }}
3131 java-version : ${{ matrix.java }}
Original file line number Diff line number Diff line change 1515 - uses : actions/checkout@v4
1616
1717 - name : Set up JDK
18- uses : actions/setup-java@v3
18+ uses : actions/setup-java@v4
1919 with :
2020 distribution : ' temurin'
2121 java-version : ' 8'
@@ -106,7 +106,7 @@ jobs:
106106 git pull
107107
108108 - name : Set up JDK OSSRH
109- uses : actions/setup-java@v3
109+ uses : actions/setup-java@v4
110110 with : # running setup-java again overwrites the settings.xml
111111 distribution : ' temurin'
112112 java-version : ' 8'
@@ -137,7 +137,7 @@ jobs:
137137 git pull
138138
139139 - name : Set up JDK
140- uses : actions/setup-java@v3
140+ uses : actions/setup-java@v4
141141 with :
142142 distribution : ' temurin'
143143 java-version : ' 8'
Original file line number Diff line number Diff line change 1010 - uses : actions/checkout@v4
1111
1212 - name : Set up JDK OSSRH
13- uses : actions/setup-java@v3
13+ uses : actions/setup-java@v4
1414 with : # running setup-java again overwrites the settings.xml
1515 distribution : ' temurin'
1616 java-version : ' 8'
Original file line number Diff line number Diff line change 8686 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
8787 run : |
8888 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 "$@")
9090 }
9191 gh_pr_up -B "${{ steps.main.outputs.current_branch }}" \
92- -H "${{ env.UPDATE_BRANCH }}" \
9392 --title "Update from template" \
9493 --body "An automated PR to sync changes from the template into this repo"
Original file line number Diff line number Diff line change 149149 <plugin >
150150 <groupId >org.apache.maven.plugins</groupId >
151151 <artifactId >maven-javadoc-plugin</artifactId >
152- <version >3.6.0 </version >
152+ <version >3.6.3 </version >
153153 <executions >
154154 <execution >
155155 <id >attach-javadocs</id >
You can’t perform that action at this time.
0 commit comments