diff --git a/.github/actions/format/action.yml b/.github/actions/format/action.yml index 855cc3da8..860aaf031 100644 --- a/.github/actions/format/action.yml +++ b/.github/actions/format/action.yml @@ -13,7 +13,7 @@ runs: java-version: '21' distribution: 'temurin' - name: Cache Maven packages - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b + uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles(format('{0}/**/pom.xml', inputs.path)) }} diff --git a/.github/workflows/javaci.yml b/.github/workflows/javaci.yml index 792d52d59..cd23bd85c 100644 --- a/.github/workflows/javaci.yml +++ b/.github/workflows/javaci.yml @@ -27,7 +27,7 @@ jobs: java-version: '21' distribution: 'temurin' - name: Cache Maven packages - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b + uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} @@ -53,7 +53,7 @@ jobs: java-version: ${{ matrix.java }} distribution: 'temurin' - name: Cache Maven packages - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b + uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index c5eefb545..5a388bb3c 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -22,13 +22,13 @@ jobs: java-version: 17 distribution: 'zulu' - name: Cache SonarQube Cloud packages - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b + uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@b7e8d49f17405cc70c1c120101943203c98d3a4b + uses: actions/cache@565629816435f6c0b50676926c9b05c254113c0c with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}