We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d48735 commit b638045Copy full SHA for b638045
.github/workflows/pr-ci.yaml
@@ -15,15 +15,11 @@ jobs:
15
steps:
16
- uses: actions/checkout@v2
17
- name: Set up JDK 11
18
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
19
with:
20
+ distribution: 'temurin'
21
java-version: 11
- - name: Cache Maven packages
22
- uses: actions/cache@v2
23
- with:
24
- path: ~/.m2
25
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
26
- restore-keys: ${{ runner.os }}-m2
+ cache: 'maven'
27
- name: Version Info
28
run: mvn -version
29
- name: Build with Maven
0 commit comments