We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e6767a commit 2b8225fCopy full SHA for 2b8225f
.github/actions/prepare-gradle-build/action.yml
@@ -24,7 +24,7 @@ runs:
24
with:
25
distribution: ${{ inputs.java-early-access == 'true' && 'temurin' || 'liberica' }}
26
java-version: |
27
- ${{ inputs.java-version }}
+ ${{ inputs.java-early-access == 'true' && format('{0}-ea', inputs.java-version) || inputs.java-version }}
28
${{ inputs.java-toolchain == 'true' && '17' || '' }}
29
- name: Set Up Gradle
30
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
.github/workflows/ci.yml
@@ -23,8 +23,8 @@ jobs:
23
toolchain: true
- version: 22
- - version: 23-ea
- distribution: temurin
+ - version: 23
+ early-access: true
exclude:
- os:
0 commit comments