From 4e380d19e192ace8e86f23f32ca6fdec98a673c6 Mon Sep 17 00:00:00 2001 From: Ryan Peck <1244954+RyPeck@users.noreply.github.com> Date: Tue, 24 Feb 2026 09:11:36 -0500 Subject: [PATCH] Fix cache key in examples.md for bun.lock Updated cache key to use 'bun.lock' instead of 'bun.lockb' for consistency. --- examples.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples.md b/examples.md index c93c614..58e23f9 100644 --- a/examples.md +++ b/examples.md @@ -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