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 3d4626c commit 8aefa0fCopy full SHA for 8aefa0f
.github/workflows/build.yml
@@ -14,19 +14,20 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - uses: actions/checkout@v2.3.4
+ - uses: actions/checkout@v2
18
with:
19
fetch-depth: 0
20
- - uses: actions/cache@v2.1.6
+ - uses: actions/cache@v2
21
22
path: ~/.m2/repository
23
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
24
restore-keys: |
25
${{ runner.os }}-maven-
26
- name: Set up JDK 11
27
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v2
28
29
- java-version: 11
+ distribution: 'temurin'
30
+ java-version: '11'
31
- name: Build with Maven
32
run: ./mvnw -B clean verify javadoc:javadoc --file pom.xml
33
- name: Sonar Analysis
0 commit comments