From 1aef7c8550a7e0d503a1fd6c9b602670fa5a8d8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Aug 2022 09:08:56 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.0.6 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.0.6. - [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.6) --- 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..9a79a00be73 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.6 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.6 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.6 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..87b91f89baf 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.6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}