From 67fad40ad24d8fc935cf5e3de8092c9470621e7f Mon Sep 17 00:00:00 2001 From: Alexander Lanin Date: Mon, 7 Sep 2026 16:09:50 +0200 Subject: [PATCH] ci: use new cache actions (only) --- .github/workflows/code_coverage.yml | 5 +++-- .github/workflows/on-pr.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 6ea3aa246d..90c27d5992 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 6f253dbf60..1eaf5fedbe 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