Skip to content

Commit 4e4b29a

Browse files
committed
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.
1 parent 706d295 commit 4e4b29a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release-please.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ jobs:
5757
node-version: '22'
5858
registry-url: 'https://registry.npmjs.org'
5959

60-
- uses: runs-on/cache@v4
60+
- uses: actions/cache@v4
6161
with:
62-
path: ~/.bun/install/cache
63-
key: bun-cache-${{ hashFiles('**/bun.lock') }}
64-
restore-keys: bun-cache-
62+
path: |
63+
~/.bun/install/cache
64+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
6565

6666
- name: Install dependencies
6767
run: bun install

0 commit comments

Comments
 (0)