Skip to content

Commit 080d0e0

Browse files
committed
add 21-ea to gh action build
Signed-off-by: Lukas Jungmann <[email protected]>
1 parent 81184d4 commit 080d0e0

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/maven.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2021 Contributors to the Eclipse Foundation
2+
# Copyright (c) 2021, 2023 Contributors to the Eclipse Foundation
33
#
44
# This program and the accompanying materials are made available under the
55
# terms of the Eclipse Public License v. 2.0 which is available at
@@ -16,20 +16,24 @@ on:
1616
pull_request:
1717
push:
1818

19+
concurrency:
20+
group: ${{ github.ref }}
21+
cancel-in-progress: true
22+
1923
jobs:
2024
build:
2125
name: Test on JDK ${{ matrix.java_version }}
2226
runs-on: ubuntu-latest
2327

2428
strategy:
2529
matrix:
26-
java_version: [ 11, 17-ea ]
30+
java_version: [ 11, 17, 21-ea ]
2731

2832
steps:
2933
- name: Checkout for build
30-
uses: actions/checkout@v2.3.4
34+
uses: actions/checkout@v3
3135
- name: Set up JDK
32-
uses: actions/setup-java@v2
36+
uses: actions/setup-java@v3
3337
with:
3438
distribution: 'zulu'
3539
java-version: ${{ matrix.java_version }}

0 commit comments

Comments
 (0)