diff --git a/.github/workflows/ci-maven.yaml b/.github/workflows/ci-maven.yaml index 868afec4e4..49f88ebb9b 100644 --- a/.github/workflows/ci-maven.yaml +++ b/.github/workflows/ci-maven.yaml @@ -20,7 +20,7 @@ jobs: - run: java -version - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 864a636611..9077e71b29 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: - name: Bazel File Cache Setup id: cache-bazel - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/bazel key: ${{ runner.os }}-${{ secrets.CACHE_VERSION }} diff --git a/.github/workflows/sonar.yaml b/.github/workflows/sonar.yaml index 0b700dd288..9c4bb59559 100644 --- a/.github/workflows/sonar.yaml +++ b/.github/workflows/sonar.yaml @@ -19,13 +19,13 @@ jobs: java-version: 11 distribution: temurin - name: Cache SonarCloud packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}