Skip to content

Commit

Permalink
Fix Publish Docs action
Browse files Browse the repository at this point in the history
  • Loading branch information
leonard84 committed Oct 27, 2023
1 parent 79edf2f commit 3ea3886
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-jdks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
- name: Prepare JDK8 env var
shell: bash
run: echo "JDK8=$JAVA_HOME" >> $GITHUB_ENV
# We need JDK 11 for the Gradle build logic
# We need JDK 17 for the Gradle build logic
- name: 'Set up JDK 17'
uses: actions/setup-java@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
matrix:
os: [ 'ubuntu-latest' ]
variant: [ '2.5', '3.0', '4.0' ] # publish needs to be done for all versions
java: [ '8' ] # publish needs the min supported java version
java: [ '8' ] # publish needs the min supported java version
steps:
- uses: actions/checkout@v4
- name: 'Set up JDKs'
Expand All @@ -100,7 +100,7 @@ jobs:
matrix:
os: ['ubuntu-latest']
variant: ['4.0'] # docs need the highest variant
java: ['17'] # docs need the highest java version
java: ['21'] # docs need the highest java version
steps:
- uses: actions/checkout@v4
- name: 'Set up JDKs'
Expand Down

0 comments on commit 3ea3886

Please sign in to comment.