Cache ~/.m2 dir for GitHub builds.
This commit is contained in:
parent
9f52471fab
commit
600f0c8a1d
|
@ -34,6 +34,12 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2.3.2
|
- uses: actions/checkout@v2.3.2
|
||||||
|
- uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: ~/.m2/repository
|
||||||
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-maven-
|
||||||
- name: Set up JDK ${{ matrix.java }}
|
- name: Set up JDK ${{ matrix.java }}
|
||||||
uses: actions/setup-java@v1.4.0
|
uses: actions/setup-java@v1.4.0
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue