This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-text.git
The following commit(s) were added to refs/heads/master by this push: new 97628ae Cache ~/.m2 dir for GitHub builds. 97628ae is described below commit 97628aef98265e9e13760a969df1121768137822 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Mon Aug 10 21:18:44 2020 -0400 Cache ~/.m2 dir for GitHub builds. --- .github/workflows/maven.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2081d43..59093bb 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -34,6 +34,12 @@ jobs: steps: - 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 }} uses: actions/setup-java@v1.4.0 with: