diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 6ea3aa246..90c27d599 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -42,9 +42,10 @@ jobs: uses: actions/checkout@v7 - name: Setup Bazel with shared caching - uses: eclipse-score/cicd-actions/setup-bazel-cache@212bbf86267e9381da9d2daf962d12f6feafbc90 + uses: eclipse-score/cicd-actions/setup-bazel-cache@cache with: - unique-cache-name: ${{ github.workflow }}-${{ github.job }} + disk-cache-key: ${{ github.job }} + enable-profiling: true - name: Collect coverage run: | diff --git a/.github/workflows/on-pr.yml b/.github/workflows/on-pr.yml index 6f253dbf6..1eaf5fedb 100644 --- a/.github/workflows/on-pr.yml +++ b/.github/workflows/on-pr.yml @@ -62,9 +62,10 @@ jobs: uses: actions/checkout@v7 - name: Setup Bazel with shared caching - uses: eclipse-score/cicd-actions/setup-bazel-cache@212bbf86267e9381da9d2daf962d12f6feafbc90 + uses: eclipse-score/cicd-actions/setup-bazel-cache@cache with: - unique-cache-name: ${{ github.workflow }}-${{ github.job }}-${{ matrix.name }} + disk-cache-key: ${{ github.job }}-${{ matrix.name }} + enable-profiling: true - name: Build with Bazel if: matrix.build