Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit cdc5cc1

Browse files
authored
Merge pull request #10 from xdev-software/update-from-template
Update from template
2 parents b2efc74 + 2c64665 commit cdc5cc1

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.github/workflows/checkBuild.yml

+2-2
Original file line numberDiff line numberDiff 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 }}

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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'

.github/workflows/test-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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'

.github/workflows/update-from-template.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,8 @@ jobs:
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"

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
<plugin>
155155
<groupId>org.apache.maven.plugins</groupId>
156156
<artifactId>maven-javadoc-plugin</artifactId>
157-
<version>3.6.0</version>
157+
<version>3.6.3</version>
158158
<executions>
159159
<execution>
160160
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)