We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65458af commit 67e6179Copy full SHA for 67e6179
1 file changed
.github/workflows/maven.yml
@@ -14,19 +14,12 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - uses: actions/checkout@v3
18
- - name: Set up JDK 11
19
- uses: actions/setup-java@v3
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v4
20
with:
21
- distribution: adopt
22
- java-version: 11
23
-
24
- - uses: actions/cache@v3
25
- with:
26
- path: ~/.m2/repository
27
- key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
28
- restore-keys: |
29
- ${{ runner.os }}-maven-
+ distribution: temurin
+ java-version: 17
+ cache: maven
30
31
- name: Build with Maven
32
run: |
0 commit comments