From 9bc01cf7d81eac47ea670d1f3d88926767e83001 Mon Sep 17 00:00:00 2001 From: Sergio Date: Thu, 5 Mar 2026 22:31:07 -0800 Subject: [PATCH] Fix bun cache key to use bun.lock --- .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-