Skip to content

Commit 2b8225f

Browse files
committed
Polish "Sync GHA setup"
1 parent 1e6767a commit 2b8225f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/prepare-gradle-build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
with:
2525
distribution: ${{ inputs.java-early-access == 'true' && 'temurin' || 'liberica' }}
2626
java-version: |
27-
${{ inputs.java-version }}
27+
${{ inputs.java-early-access == 'true' && format('{0}-ea', inputs.java-version) || inputs.java-version }}
2828
${{ inputs.java-toolchain == 'true' && '17' || '' }}
2929
- name: Set Up Gradle
3030
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
toolchain: true
2424
- version: 22
2525
toolchain: true
26-
- version: 23-ea
27-
distribution: temurin
26+
- version: 23
27+
early-access: true
2828
toolchain: true
2929
exclude:
3030
- os:

0 commit comments

Comments
 (0)