Compare commits

...

5 Commits

Author SHA1 Message Date
timbaverstock-bmbl
89e0c28b9f
Merge 3a277b5a1b into 5656298164 2026-02-26 11:15:56 +00:00
Ryan Ghadimi
5656298164
Merge pull request #1722 from RyPeck/patch-1
Fix cache key in examples.md for bun.lock
2026-02-24 14:21:04 +00:00
Ryan Peck
4e380d19e1
Fix cache key in examples.md for bun.lock
Updated cache key to use 'bun.lock' instead of 'bun.lockb' for consistency.
2026-02-24 09:11:36 -05:00
timbaverstock-bmbl
3a277b5a1b
Merge branch 'main' into patch-1 2025-09-26 11:19:33 +01:00
timbaverstock-bmbl
2bfeb8393e
Update README.md 2025-09-22 15:25:36 +01:00
2 changed files with 4 additions and 2 deletions

View File

@ -179,6 +179,8 @@ jobs:
> **Note**
> You must use the `cache` or `restore` action in your workflow before you need to use the files that might be restored from the cache. If the provided `key` matches an existing cache, a new cache is not created and if the provided `key` doesn't match an existing cache, a new cache is automatically created provided the job completes successfully.
>
> The save path must match the restore path, see [Cache Version](#cache-version) below.
## Caching Strategies

View File

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