File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,18 @@ permissions:
13
13
jobs :
14
14
build :
15
15
16
- # TODO Enable strategy for next Jakarta Release Cycle
17
- # strategy:
18
- # matrix:
19
- # java-version: [ '21', '25-ea' ]
16
+ strategy :
17
+ matrix :
18
+ java-version : [ '17', '21' ]
20
19
21
20
runs-on : ubuntu-latest
22
21
23
22
steps :
24
23
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
25
- - name : Set up JDK 21 # ${{ matrix.java-version }}
24
+ - name : Set up JDK ${{ matrix.java-version }}
26
25
uses : actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0
27
26
with :
28
- java-version : 21 # ${{ matrix.java-version }}
27
+ java-version : ${{ matrix.java-version }}
29
28
distribution : ' temurin'
30
29
cache : maven
31
30
- name : Build API
You can’t perform that action at this time.
0 commit comments