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 7726b9a commit 549a4adCopy full SHA for 549a4ad
.github/workflows/tests.yml
@@ -33,7 +33,13 @@ jobs:
33
uses: actions/setup-java@v4
34
with:
35
distribution: 'temurin'
36
- java-version: ${{ startsWith(matrix.version, '1.16') && '11' || (startsWith(matrix.version, '1.17') && '16' || '21') }}
+ java-version: ${{
37
+ startsWith(matrix.version, '1.16') && '11' ||
38
+ startsWith(matrix.version, '1.17') && '16' ||
39
+ startsWith(matrix.version, '1.18') && '17' ||
40
+ startsWith(matrix.version, '1.19') && '17' ||
41
+ '21'
42
+ }}
43
44
# Setup Node.js
45
- name: Setup Node.js
0 commit comments