From 48f26f74306cb2efbb123d51b6c421451a92af62 Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Wed, 11 Dec 2024 14:29:01 +0100 Subject: [PATCH] Deprecation of https://github.com/actions/cache < v3 --- .github/workflows/daily-security-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily-security-check.yml b/.github/workflows/daily-security-check.yml index 1f7e28305..c31b609e0 100644 --- a/.github/workflows/daily-security-check.yml +++ b/.github/workflows/daily-security-check.yml @@ -78,7 +78,7 @@ jobs: cache: 'maven' - name: Set up maven cache if needed if: steps.check_maven.outputs.files_exists == 'true' - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}