From 9a4088a15706889728107b97800ffc25f13f5fa3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 14:07:23 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/licensecheck.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45b47e08a7..c8b0bd4e6c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -143,7 +143,7 @@ jobs: - name: "Cache: Local Maven Repository" - uses: actions/cache@v4 + uses: actions/cache@v5 with: # Excluded sub directory not working https://github.com/actions/toolkit/issues/713 path: | @@ -156,7 +156,7 @@ jobs: - name: "Cache: Local Tycho Repository" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.m2/repository/.cache/tycho diff --git a/.github/workflows/licensecheck.yml b/.github/workflows/licensecheck.yml index 9d8a40d751..1ac6297a42 100644 --- a/.github/workflows/licensecheck.yml +++ b/.github/workflows/licensecheck.yml @@ -62,7 +62,7 @@ jobs: with: maven-version: 3.9.9 - name: Cache local Maven repository - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}