From 591cb604599efbee837af59dcd39ae73c379f19a Mon Sep 17 00:00:00 2001 From: Matthew Breedlove Date: Wed, 4 Mar 2026 18:15:10 -0500 Subject: [PATCH] ci: drop invalid cache input from setup-bun v2 Remove unsupported 'cache' input from oven-sh/setup-bun@v2 steps to eliminate GitHub Actions warnings about unexpected inputs. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 908ac11..cbe92f1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,8 +12,6 @@ jobs: steps: - uses: actions/checkout@v6 - uses: oven-sh/setup-bun@v2 - with: - cache: true - run: bun install - run: bun tsc --noEmit - run: bunx eslint . --config eslint.config.js --max-warnings=999999 @@ -24,8 +22,6 @@ jobs: steps: - uses: actions/checkout@v6 - uses: oven-sh/setup-bun@v2 - with: - cache: true - run: bun install - run: bun test @@ -36,8 +32,6 @@ jobs: steps: - uses: actions/checkout@v6 - uses: oven-sh/setup-bun@v2 - with: - cache: true - run: bun install - run: bun run build - run: test -f dist/ccstatusline.js