From b779fb207cec1af9df267b0c00a6a6a586520ffb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 17:27:35 +0000 Subject: [PATCH] Update actions/cache action to v6 --- .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 14bd256..53391c8 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@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-maven- - name: Cache Distributions - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./dist key: cache-dist-${{github.run_id}}