From 94aeadb933dd3ea9392bc9383222f77e4a5e18f2 Mon Sep 17 00:00:00 2001 From: LoryPelli <87276663+lorypelli@users.noreply.github.com> Date: Thu, 5 Feb 2026 07:17:02 +0100 Subject: [PATCH 1/2] fix(changelog): changelog year to 2026 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffe51c96..54c16c4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ # Changelog -### [0.9.0] - 2025-01-15 +### [0.9.0] - 2026-01-15 - PHP 8.5 -### [0.8.0] - 2025-01-15 +### [0.8.0] - 2026-01-15 - PHP 8.4 From ce1ddf05d531070addf829b8857b18f69351febc Mon Sep 17 00:00:00 2001 From: LoryPelli <87276663+lorypelli@users.noreply.github.com> Date: Thu, 5 Feb 2026 15:11:03 +0100 Subject: [PATCH 2/2] feat(cache): PNPM and Bun --- src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.ts b/src/index.ts index 652a16ec..1eb51f25 100644 --- a/src/index.ts +++ b/src/index.ts @@ -144,6 +144,11 @@ export const prepareCache: PrepareCache = async ({ workPath }) => { ...(await glob('node_modules/**', workPath)), ...(await glob('package-lock.json', workPath)), ...(await glob('yarn.lock', workPath)), + ...(await glob('pnpm-lock.yaml', workPath)), + // Bun + ...(await glob('bun.lock', workPath)), + /* in case still used */ + ...(await glob('bun.lockb', workPath)), }; };