From 709f6d3a21cc26d3efffa67ba45629163792f3b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Dec 2022 09:01:39 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.2. - [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.2.2) --- 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..9525cd2d8ee 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.2.2 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.2.2 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.2.2 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..16a3c166f97 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.2.2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}