Skip to content

Commit 477c3d3

Browse files
authored
Update setup-java action and include latest Java LTS in testing. (#38)
1 parent c73f726 commit 477c3d3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: [ 8, 12, 15 ]
10+
java: [ 8, 11, 12, 15 ]
1111
steps:
1212
- uses: actions/checkout@v2
13-
- name: Set Java
14-
uses: actions/setup-java@v1
13+
- name: Setup Java
14+
uses: actions/setup-java@v2
1515
with:
16+
distribution: 'adopt'
1617
java-version: ${{ matrix.java }}
1718
- name: Cache Maven packages
1819
uses: actions/cache@v2

0 commit comments

Comments
 (0)