From d738d7556ccbb411ea3180fef279f0addaa186f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 23:41:21 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .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 9f88a1a0..8acc89e7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ jobs: # Use Maven dependency cache - name: Cache Maven Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 81148a69..315dddcc 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -27,7 +27,7 @@ jobs: distribution: 'zulu' java-version: ${{ matrix.java }} - name: Cache Maven Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -49,7 +49,7 @@ jobs: distribution: 'temurin' java-version: ${{ matrix.java }} - name: Cache Maven Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -75,7 +75,7 @@ jobs: distribution: 'adopt' java-version: 15 - name: Cache Maven Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -98,7 +98,7 @@ jobs: distribution: 'temurin' java-version: 17 - name: Cache Maven Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }} @@ -121,7 +121,7 @@ jobs: distribution: 'temurin' java-version: 11 - name: Cache Maven Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ares-maven-${{ hashFiles('**/pom.xml') }}