1
0
mirror of https://github.com/actions/cache.git synced 2026-02-26 05:52:29 +00:00

Merge pull request #1722 from RyPeck/patch-1

Fix cache key in examples.md for bun.lock
This commit is contained in:
Ryan Ghadimi
2026-02-24 14:21:04 +00:00
committed by GitHub

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