Skip to content

Commit 61e32e7

Browse files
committed
try a different cache
1 parent ffac787 commit 61e32e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
uses: actions/cache@v4
2222
with:
2323
path: ~/.bun/install/cache
24-
key: ${{ runner.os }}-buncache-${{ hashFiles('**/bun.lock') }}
24+
key: ${{ runner.os }}-bc-${{ hashFiles('**/bun.lock') }}
2525
restore-keys: |
26-
${{ runner.os }}-buncache-
26+
${{ runner.os }}-bc-
2727
2828
- name: Install dependencies
2929
run: bun install --frozen-lockfile

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
uses: actions/cache@v4
3636
with:
3737
path: ~/.bun/install/cache
38-
key: ${{ runner.os }}-buncache-${{ hashFiles('**/bun.lock') }}
38+
key: ${{ runner.os }}-bc-${{ hashFiles('**/bun.lock') }}
3939
restore-keys: |
40-
${{ runner.os }}-buncache-
40+
${{ runner.os }}-bc-
4141
4242
- name: Install Dependencies
4343
run: bun install --frozen-lockfile

0 commit comments

Comments
 (0)