8
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2026-02-25 20:21:58 +00:00

Fix cache key in examples.md for bun.lock

Updated cache key to use 'bun.lock' instead of 'bun.lockb' for consistency.
This commit is contained in:
Ryan Peck 2026-02-24 09:11:36 -05:00 committed by GitHub
parent b7e8d49f17
commit 4e380d19e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@
with: with:
path: | path: |
~/.bun/install/cache ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
``` ```
### Windows ### Windows
@ -59,7 +59,7 @@
with: with:
path: | path: |
~\.bun ~\.bun
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
``` ```
## C# - NuGet ## C# - NuGet