From f208e5cd9f5bcb125b413173b8dbd2b14738c61d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Sep 2025 21:02:39 +0000 Subject: [PATCH] github-actions(deps): bump actions/cache from 2.1.7 to 4.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 4.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.7...v4.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-2.x.yaml | 2 +- .github/workflows/build.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-2.x.yaml b/.github/workflows/build-2.x.yaml index cb1b50cc259a..c75e2f561156 100644 --- a/.github/workflows/build-2.x.yaml +++ b/.github/workflows/build-2.x.yaml @@ -35,7 +35,7 @@ jobs: distribution: 'adopt' java-version: ${{ matrix.java-version }} - name: Cache Maven packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v4.3.0 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index db63085f3167..f1216ae8cd22 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,13 +34,13 @@ jobs: distribution: 'adopt' java-version: ${{ matrix.java-version }} - name: Cache Maven packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v4.3.0 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - name: Cache SonarCloud packages - uses: actions/cache@v2.1.7 + uses: actions/cache@v4.3.0 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar