From e09d83f7f6edcbfd6a4508d1be2eb7a13896002f Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Thu, 21 Aug 2025 20:11:21 +0200 Subject: [PATCH] chore: ignore secondary cache keys --- .github/workflows/console.yml | 2 -- .github/workflows/core.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/console.yml b/.github/workflows/console.yml index 3e77757129b..5627a6c5da5 100644 --- a/.github/workflows/console.yml +++ b/.github/workflows/console.yml @@ -34,8 +34,6 @@ jobs: id: cache with: key: console-${{ hashFiles('console', 'proto', '!console/dist') }} - restore-keys: | - console- path: ${{ env.cache_path }} - if: ${{ steps.cache.outputs.cache-hit != 'true' }} diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 13e7c0dee7a..00509a77918 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -42,8 +42,6 @@ jobs: id: cache with: key: core-${{ hashFiles( 'go.*', 'openapi', 'cmd', 'pkg/grpc/**/*.go', 'proto', 'internal') }} - restore-keys: | - core- path: ${{ env.cache_path }} - if: ${{ steps.cache.outputs.cache-hit != 'true' }}