From e50de0226deb5e3a53de65087e4f90e87fbdc11e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Aug 2022 00:19:31 +0000 Subject: [PATCH] Bump actions/cache from 2.1.4 to 3.0.8 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.0.8. - [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.8) --- 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..9b9de0f08 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.8 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/sonarcuberun1.yml b/.github/workflows/sonarcuberun1.yml index a6abacac1..f159896fc 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.8 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.8 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}