From 2209a1d474c0fd16f5ee296badb8f3abdb6fdd1c Mon Sep 17 00:00:00 2001 From: Renovate Date: Wed, 25 Sep 2024 15:02:18 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v4 --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f143c2a..56af16f 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -20,13 +20,13 @@ jobs: with: java-version: 17 - name: Cache SonarQube packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Gradle packages - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.gradle/caches key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}