You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/06/29 12:49:54 UTC

[commons-numbers] branch master updated: Use GitHub Actions setup-java Maven cache property

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/master by this push:
     new 6be5bb73 Use GitHub Actions setup-java Maven cache property
6be5bb73 is described below

commit 6be5bb73e367a1bbe22dce9e0a2bd5985b879097
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Wed Jun 29 13:49:30 2022 +0100

    Use GitHub Actions setup-java Maven cache property
---
 .github/workflows/coverage.yml | 7 +------
 .github/workflows/maven.yml    | 7 +------
 2 files changed, 2 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index a812469b..e632ed91 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -30,17 +30,12 @@ jobs:
 
     steps:
     - uses: actions/checkout@v3
-    - uses: actions/cache@v3
-      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@v3
       with:
         distribution: adopt
         java-version: ${{ matrix.java }}
+        cache: 'maven'  
     - name: Build with Maven
       run: mvn -V test jacoco:report --no-transfer-progress
 
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 9ca51b63..c82e5d63 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -30,17 +30,12 @@ jobs:
 
     steps:
     - uses: actions/checkout@v3
-    - uses: actions/cache@v3
-      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@v3
       with:
         distribution: adopt
         java-version: ${{ matrix.java }}
+        cache: 'maven'  
     - name: Build with Maven
       # Use the default goal
       if: matrix.java == 8