You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/08/11 01:11:01 UTC

[commons-beanutils] branch master updated: Cache ~/.m2 dir for GitHub builds.

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-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
     new ff83d65  Cache ~/.m2 dir for GitHub builds.
ff83d65 is described below

commit ff83d653e2fdbab1c946727a0c7e4421fa5e0c86
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Aug 10 21:10:54 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 cecaba9..6e082fb 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -32,6 +32,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: