From 54af92f6aef09c34919d374bafce887a66b5e7c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 00:19:58 +0000 Subject: [PATCH] Bump actions/cache from 2.1.4 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 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.4...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/release.yml | 2 +- .github/workflows/sonarcuberun1.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1af644c2c..dbb1aa7e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: architecture: x64 - name: Cache Maven packages - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.0.11 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/sonarcuberun1.yml b/.github/workflows/sonarcuberun1.yml index a6abacac1..ec4f3f71a 100644 --- a/.github/workflows/sonarcuberun1.yml +++ b/.github/workflows/sonarcuberun1.yml @@ -17,13 +17,13 @@ jobs: with: java-version: 11 - name: Cache SonarQube packages - uses: actions/cache@v1 + uses: actions/cache@v3.0.11 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v1 + uses: actions/cache@v3.0.11 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}