From d02a8170318f373f3981f51f4b5478c636ec7c66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 12:57:28 +0000 Subject: [PATCH] Bump actions/cache from 2.1.4 to 3.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.3.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.4...v3.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ed1f8b..710c1e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,7 +80,7 @@ jobs: java-version: 1.8 - name: Cache Gradle packages - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.3.0 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle.kts') }} @@ -129,14 +129,14 @@ jobs: java-version: 11 - name: Cache SonarCloud packages - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.3.0 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Gradle packages - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.3.0 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-test-${{ hashFiles('**/*.gradle.kts') }}