From 7fc61d56dff42f5977cc46e947e0d7a8d60b13a7 Mon Sep 17 00:00:00 2001 From: Ivan FB Date: Mon, 30 Mar 2026 01:29:24 +0200 Subject: [PATCH] ci cache based on hash of nimble.lock file --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 017861b47..e32f5f80a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,7 +154,7 @@ jobs: uses: actions/cache@v4 with: path: nimbledeps - key: nimbledeps-${{ matrix.builder }}-${{ matrix.platform.cpu }}-${{ hashFiles('.pinned') }} + key: nimbledeps-${{ matrix.builder }}-${{ matrix.platform.cpu }}-${{ hashFiles('nimble.lock') }} - name: Install deps if: ${{ steps.deps-cache.outputs.cache-hit != 'true' }} @@ -277,7 +277,7 @@ jobs: uses: actions/cache@v4 with: path: nimbledeps - key: nimbledeps-${{ matrix.builder }}-${{ matrix.platform.cpu }}-${{ hashFiles('.pinned') }} + key: nimbledeps-${{ matrix.builder }}-${{ matrix.platform.cpu }}-${{ hashFiles('nimble.lock') }} - name: Install deps if: ${{ steps.deps-cache.outputs.cache-hit != 'true' }}