From 4e4b29a736682fb02e3227f82a2539335e4fbcb4 Mon Sep 17 00:00:00 2001 From: Minsu Lee Date: Fri, 19 Dec 2025 21:46:33 +0900 Subject: [PATCH] fix(ci): use actions/cache for GitHub-hosted runners runs-on/cache is specific to runs-on.com self-hosted runners. GitHub-hosted runners should use actions/cache instead. --- .github/workflows/release-please.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 3353f29..0209c2e 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -57,11 +57,11 @@ jobs: node-version: '22' registry-url: 'https://registry.npmjs.org' - - uses: runs-on/cache@v4 + - uses: actions/cache@v4 with: - path: ~/.bun/install/cache - key: bun-cache-${{ hashFiles('**/bun.lock') }} - restore-keys: bun-cache- + path: | + ~/.bun/install/cache + key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} - name: Install dependencies run: bun install