We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6b6b96 commit d949871Copy full SHA for d949871
.github/workflows/github-actions-build.yml
@@ -11,10 +11,10 @@ jobs:
11
steps:
12
- uses: actions/checkout@v2
13
14
- - name: Set up JDK 11
+ - name: Set up JDK 8
15
uses: actions/setup-java@v2
16
with:
17
- java-version: '11'
+ java-version: '8'
18
distribution: 'adopt'
19
20
- name: Cache Maven Repo
@@ -27,6 +27,12 @@ jobs:
27
- name: Build Test and Verify
28
run: mvn -B -U clean install -Dmaven.javadoc.skip=true -Pdisplay-versions
29
30
+ - name: Set up JDK 17
31
+ uses: actions/setup-java@v2
32
+ with:
33
+ java-version: '17'
34
+ distribution: 'adopt'
35
+
36
- name: SonarCloud Scan
37
run: |
38
if ["$SONAR_TOKEN" == ""]; then
0 commit comments