From 577c146f770d123e6eca2e1de2124f008eb6109c Mon Sep 17 00:00:00 2001 From: Sergio Date: Fri, 6 Mar 2026 07:18:54 -0800 Subject: [PATCH] fix(ci): use bun.lock for setup-bun cache key --- .github/actions/setup-bun/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup-bun/action.yml b/.github/actions/setup-bun/action.yml index 6c632f7e072..dbad44aeaeb 100644 --- a/.github/actions/setup-bun/action.yml +++ b/.github/actions/setup-bun/action.yml @@ -7,7 +7,7 @@ runs: uses: actions/cache@v4 with: path: ~/.bun/install/cache - key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} + key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} restore-keys: | ${{ runner.os }}-bun-