From c415ba337357dc24b5fd82abd4e9e2b534e3ff83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 02:01:26 +0000 Subject: [PATCH] Chore(deps): Bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/maven-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index f92f195e3c..a1d144754b 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -17,7 +17,7 @@ jobs: with: java-version: ${{ matrix.java }} - name: Cached .m2 - uses: actions/cache@v2 + uses: actions/cache@v3.0.11 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -37,7 +37,7 @@ jobs: uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - - uses: actions/cache@v2 + - uses: actions/cache@v3.0.11 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -58,7 +58,7 @@ jobs: uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - - uses: actions/cache@v2 + - uses: actions/cache@v3.0.11 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}