From 1de5f9fbb8b1a0f0cad642cb069bf7536a76826b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 09:06:52 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 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.1.6...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.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..89967677d8c 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.11 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.11 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.11 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..b3a54934acb 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.11 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}