From 261c393fc252380e8895679b1ab14c0fa057ad70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 20:09:48 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cross-version.yml | 2 +- .github/workflows/main.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cross-version.yml b/.github/workflows/cross-version.yml index b8fd8010510..e7e628c49f1 100644 --- a/.github/workflows/cross-version.yml +++ b/.github/workflows/cross-version.yml @@ -19,7 +19,7 @@ jobs: distribution: 'zulu' java-version: ${{ matrix.java }} - name: Cache Maven Repository - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 019f572b1ca..9f16f073c5a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: distribution: 'zulu' java-version: 11 - name: Cache Maven Repository - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -41,7 +41,7 @@ jobs: distribution: 'zulu' java-version: 11 - name: Cache Maven Repository - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ~/.m2 key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}