Skip to content

Commit d33d98f

Browse files
authored
Fix javadoc build issues (#78)
* make jdk's consistent * force javadoc check in CI build
1 parent 6235cbe commit d33d98f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- name: Set up Java
2323
uses: actions/setup-java@v2
2424
with:
25-
java-version: '11'
2625
distribution: 'adopt'
26+
java-version: '21'
2727

2828
# Import GPG secret key for signing
2929
- name: Import GPG key

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-java@v4
2121
with:
22-
distribution: 'temurin'
22+
distribution: 'adopt'
2323
java-version: '21'
2424
cache: 'maven'
2525
- name: Initialize CodeQL
@@ -28,7 +28,7 @@ jobs:
2828
languages: java
2929
- name: Build with Maven
3030
timeout-minutes: 15
31-
run: mvn -B clean package --file pom.xml
31+
run: mvn -B clean javadoc:javadoc package --file pom.xml
3232
- name: Perform CodeQL Analysis
3333
uses: github/codeql-action/analyze@v3
3434
with:

0 commit comments

Comments
 (0)