Compare commits

...

2 Commits

Author SHA1 Message Date
LoBe 8cce4bd77c
Merge 27fcad5e66 into 638ed79f9d 2025-08-11 20:30:51 +02:00
LoBe 27fcad5e66 update examples.md for Bun v1.2 lockfile format
Bun v1.2 now uses the text-based `bun.lock` as its default lockfile format. Adjusted the action-cache examples to reference and cache `bun.lock` instead of the previous binary format.
2025-06-27 21:23:33 +02:00
1 changed files with 2 additions and 2 deletions

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