From b6c690104d876c3ca520ce3bc4130d155bbcff91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 09:07:25 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.0.7 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.0.7. - [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.1.6...v3.0.7) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/maven.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b349d1b26d1..a8ab1695547 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -26,14 +26,14 @@ jobs: uses: joschi/setup-jdk@v2.4.0 with: java-version: ${{ matrix.java_version }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.7 if: runner.os != 'Windows' with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}- - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.7 if: runner.os == 'Windows' with: path: ~/.m2/repository @@ -41,7 +41,7 @@ jobs: restore-keys: | ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}- - name: Cache SonarCloud packages - uses: actions/cache@v2.1.6 + uses: actions/cache@v3.0.7 if: ${{ env.SONAR_TOKEN != null && env.SONAR_TOKEN != '' && matrix.java_version == '11' }} env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47b34dc1e87..b2e8c64c0cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: server-password: CI_DEPLOY_PASSWORD gpg-passphrase: GPG_PASSPHRASE gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} - - uses: actions/cache@v2.1.6 + - uses: actions/cache@v3.0.7 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}