From 6c6e6a4975f3acb0858695e757a2369a0533b58d Mon Sep 17 00:00:00 2001 From: Chris Eager Date: Fri, 10 Sep 2021 13:49:23 -0700 Subject: [PATCH] =?UTF-8?q?Switch=20to=20actions/setup-java=E2=80=99s=20bu?= =?UTF-8?q?ilt-in=20caching?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d35063a45..d99413af0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,12 +13,6 @@ jobs: with: distribution: 'adopt' java-version: 11 - - name: Cache local Maven repository - uses: actions/cache@v2 - with: - path: ~/.m2/repository - key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} - restore-keys: | - ${{ runner.os }}-maven- + cache: 'maven' - name: Build with Maven run: mvn -e -B verify