From 0d4a72b78db63f41160e1f582acccb2d86984684 Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Wed, 11 Dec 2024 14:34:22 +0100 Subject: [PATCH] Deprecation of https://github.com/actions/cache < v3 --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 38b94c9..cc2bc36 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -27,7 +27,7 @@ jobs: distribution: 'adopt' cache: 'maven' - - uses: actions/cache@v1 + - uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}