From 69fd6aee743d65b395b47622d63a3a0c9746673d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Mar 2022 12:14:35 +0100 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3 (#200) Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christian Femers --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/maven.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index dbc03d30..c7d3c102 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -43,7 +43,7 @@ jobs: # Use Maven dependency cache - name: Cache Maven Dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2a490e6b..6eb5e583 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -26,7 +26,7 @@ jobs: distribution: 'zulu' java-version: ${{ matrix.java }} - name: Cache Maven Dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -48,7 +48,7 @@ jobs: distribution: 'temurin' java-version: ${{ matrix.java }} - name: Cache Maven Dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -74,7 +74,7 @@ jobs: distribution: 'adopt' java-version: 15 - name: Cache Maven Dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -97,7 +97,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Cache Maven Dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -120,7 +120,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache Maven Dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }}