We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad7c5dd commit 316ed31Copy full SHA for 316ed31
.github/actions/setup-test-jdk/action.yml
@@ -1,11 +1,16 @@
1
name: Set up Test JDK
2
description: Sets up the JDK required to run platform-tooling-support-tests
3
+inputs:
4
+ distribution:
5
+ required: true
6
+ description: 'The JDK distribution to use'
7
+ default: 'liberica'
8
runs:
9
using: "composite"
10
steps:
11
- uses: actions/setup-java@v3
12
with:
- distribution: temurin
13
+ distribution: ${{ inputs.distribution }}
14
java-version: 8
15
- shell: bash
16
run: echo "JDK8=$JAVA_HOME" >> $GITHUB_ENV
0 commit comments