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 d07a4cc commit 4cf043eCopy full SHA for 4cf043e
.github/workflows/build.yaml
@@ -16,18 +16,13 @@ jobs:
16
if: ${{ !(github.ref == 'refs/heads/main' && contains(github.event.head_commit.message, '[maven-release-plugin]')) }}
17
runs-on: ubuntu-latest
18
steps:
19
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
20
- name: Set up JDK
21
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v4
22
with:
23
java-version: 11
24
-
25
- - name: Cache Maven packages
26
- uses: actions/cache@v2
27
- with:
28
- path: ~/.m2
29
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
30
- restore-keys: ${{ runner.os }}-m2
+ distribution: 'temurin'
+ cache: 'maven'
31
32
- name: Compile & Bootstrap
33
run: mvn -B compile
0 commit comments