Skip to content

Commit f8eb4a5

Browse files
committed
[feature] Test against the version of Java for eXist-db 6.x.x (Java 8), and eXist-db 7.x.x (Java 17)
1 parent c3c7081 commit f8eb4a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@ jobs:
66
strategy:
77
fail-fast: true
88
matrix:
9-
jdk: ['8', '11']
9+
jdk: ['8', '17']
1010
os: [ubuntu-latest]
1111
runs-on: ${{ matrix.os }}
1212
steps:
1313
- uses: actions/checkout@v2
1414
- name: Set up JDK ${{ matrix.jdk }}
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v3
1616
with:
1717
java-version: ${{ matrix.jdk }}
18+
distribution: 'temurin'
1819
- name: Cache Maven packages
1920
uses: actions/cache@v2
2021
with:

0 commit comments

Comments
 (0)