diff --git a/.github/workflows/docker_metadata_action.yml b/.github/workflows/docker_metadata_action.yml index 5a9604f..0fa7703 100644 --- a/.github/workflows/docker_metadata_action.yml +++ b/.github/workflows/docker_metadata_action.yml @@ -143,7 +143,7 @@ jobs: # Download the m2 repository from the cache to speed up the build. - name: Check for Maven cache id: check-mvn-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.MVN_REPO_DIR }} key: ${{ env.MVN_HASH }} @@ -163,7 +163,7 @@ jobs: # If there was no cache hit above, store the output into the cache now. - name: Save Maven repo into cache if: ${{ steps.check-mvn-cache.outputs.cache-hit }} != 'true' - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.MVN_REPO_DIR }} key: ${{ env.MVN_HASH }} diff --git a/.github/workflows/multiarch.yml b/.github/workflows/multiarch.yml index c28d7dc..5e8eb80 100644 --- a/.github/workflows/multiarch.yml +++ b/.github/workflows/multiarch.yml @@ -192,7 +192,7 @@ jobs: # Download the m2 repository from the cache to speed up the build. - name: Check for Maven cache id: check-mvn-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.MVN_REPO_DIR }} key: ${{ env.MVN_HASH }} @@ -212,7 +212,7 @@ jobs: # If there was no cache hit above, store the output into the cache now. - name: Save Maven repo into cache if: ${{ steps.check-mvn-cache.outputs.cache-hit }} != 'true' - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.MVN_REPO_DIR }} key: ${{ env.MVN_HASH }} diff --git a/.github/workflows/scratch_build.yml b/.github/workflows/scratch_build.yml index a9a71bc..4bfa28d 100644 --- a/.github/workflows/scratch_build.yml +++ b/.github/workflows/scratch_build.yml @@ -53,7 +53,7 @@ jobs: # Download the m2 repository from the cache to speed up the build. - name: Check for Maven cache id: check-mvn-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.MVN_REPO_DIR }} key: ${{ env.MVN_HASH }} @@ -73,7 +73,7 @@ jobs: # If there was no cache hit above, store the output into the cache now. - name: Save Maven repo into cache if: ${{ steps.check-mvn-cache.outputs.cache-hit }} != 'true' - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ env.MVN_REPO_DIR }} key: ${{ env.MVN_HASH }}