From b284a30afc9f7c138339c6e34fd9926fcdc1da75 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 04:35:47 +0000 Subject: [PATCH] Update actions/cache action to v5 --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index f5ad03a..656242e 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -27,14 +27,14 @@ jobs: java-version: 21 - name: Cache Maven packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-maven- - name: Cache Distributions - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ./dist key: cache-dist-${{github.run_id}}