Skip to content

Commit

Permalink
Merge branch '3.3.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Jul 12, 2024
2 parents 1c9064c + 1de7321 commit b3a882c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/prepare-gradle-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ inputs:
required: false
default: '17'
description: 'The Java version to use for the build'
java-distribution:
required: false
default: 'liberica'
description: 'The Java distribution to use for the build'
java-toolchain:
required: false
default: false
default: 'false'
description: 'Whether a Java toolchain should be used'
develocity-access-key:
required: false
Expand All @@ -23,7 +27,7 @@ runs:
- name: Set Up Java
uses: actions/setup-java@v4
with:
distribution: 'liberica'
distribution: ${{ inputs.java-distribution }}
java-version: |
${{ inputs.java-version }}
${{ inputs.java-toolchain == 'true' && '17' || '' }}
Expand Down

0 comments on commit b3a882c

Please sign in to comment.