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