From 220ffad0672c9be6c79239ac8b922078a1fb20c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Dec 2022 09:02:01 +0000 Subject: [PATCH] Bump actions/cache from 2.1.6 to 3.2.0 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.6 to 3.2.0. - [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.0) --- 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..3605fd83aba 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.0 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.0 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.0 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..23a6a7f6ada 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.0 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}