From ee48f94630810eba91bcc911a55c85db74eb8226 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 03:37:54 +0000 Subject: [PATCH] build(deps): bump actions/cache from 1 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 1 to 4. - [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/v1...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/early-access.yml | 2 +- .github/workflows/maven-build.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/early-access.yml b/.github/workflows/early-access.yml index 8cbe94a76..a9d703b17 100644 --- a/.github/workflows/early-access.yml +++ b/.github/workflows/early-access.yml @@ -96,7 +96,7 @@ jobs: distribution: ${{ env.JAVA_DISTRO }} - name: 'Cache Maven packages' - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index 78ac9b979..8044d219f 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -32,14 +32,14 @@ jobs: cache: maven - name: Cache Maven packages - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Cache SonarCloud packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 592e690a8..1bffbd368 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -156,7 +156,7 @@ jobs: distribution: ${{ env.JAVA_DISTRO }} - name: 'Cache Maven packages' - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}