From ab18332a1df4b130848b507dae1615464ab1457f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 18:57:31 +0000 Subject: [PATCH] Update actions/cache action to v4.2.1 --- .github/workflows/nightly-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 68926461..16e726f0 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -27,7 +27,7 @@ jobs: # Cache SonarCloud for analysis - name: Cache SonarCloud for Analysis - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.1 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar @@ -35,7 +35,7 @@ jobs: # Cache Maven packages to speed up build - name: Cache the Maven Packages to speed up build - uses: actions/cache@v4.2.0 + uses: actions/cache@v4.2.1 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}