We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 895fd14 commit 15ee084Copy full SHA for 15ee084
2 files changed
.github/workflows/ci.yml
@@ -7,8 +7,8 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- # test against latest update of each major Java version, as well as specific updates of LTS versions:
11
- java: [ 8, 11 ]
+ # test against major Java versions:
+ java: [ 8, 11, 17 ]
12
os: [ macos-latest, ubuntu-latest, windows-latest ]
13
name: Java ${{ matrix.java }} @ ${{ matrix.os }}
14
steps:
.github/workflows/publish.yml
@@ -14,7 +14,7 @@ jobs:
- name: Set up Java
15
uses: actions/setup-java@v2
16
with:
17
- java-version: '11'
+ java-version: '17'
18
distribution: 'adopt'
19
- name: Publish package
20
run: ./gradlew publish
0 commit comments