diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0e15f5..88260c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: distribution: temurin java-version: '17' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2/repository key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index baad1b2..03d703a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -30,7 +30,7 @@ jobs: distribution: temurin java-version: '17' - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ~/.m2/repository key: maven-codeql-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml index a622f05..d164a09 100644 --- a/.github/workflows/dependency-check.yml +++ b/.github/workflows/dependency-check.yml @@ -28,7 +28,7 @@ jobs: java-version: '17' - name: Cache Maven repository - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: m2-${{ hashFiles('**/pom.xml') }}