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 4ade347 commit c47ebbbCopy full SHA for c47ebbb
.github/workflows/ci.yml
@@ -41,7 +41,7 @@ jobs:
41
java: 21
42
experimental: false
43
- os: ubuntu-latest
44
- java: 22-ea
+ java: EA
45
experimental: true
46
runs-on: ${{ matrix.os }}
47
continue-on-error: ${{ matrix.experimental }}
@@ -52,7 +52,15 @@ jobs:
52
access_token: ${{ github.token }}
53
- name: 'Check out repository'
54
uses: actions/checkout@v2
55
+ - name: 'Set up JDK ${{ matrix.java }} from jdk.java.net'
56
+ if: ${{ matrix.java == 'EA' }}
57
+ uses: oracle-actions/setup-java@v1
58
+ with:
59
+ website: jdk.java.net
60
+ release: ${{ matrix.java }}
61
+ cache: 'maven'
62
- name: 'Set up JDK ${{ matrix.java }}'
63
+ if: ${{ matrix.java != 'EA' }}
64
uses: actions/setup-java@v2
65
with:
66
java-version: ${{ matrix.java }}
0 commit comments