Skip to content

Commit 7dcec3c

Browse files
authored
Fix Bun (#68)
Had a lot of issues today that appear to be regarding the "latest" bun version.
1 parent ecebe8a commit 7dcec3c

File tree

4 files changed

+147
-171
lines changed

4 files changed

+147
-171
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
~/.bun/install/cache
2323
node_modules
2424
packages/*/node_modules
25-
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
25+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
2626
restore-keys: |
2727
${{ runner.os }}-bun-
2828
2929
- name: Setup Bun
3030
uses: oven-sh/setup-bun@v2
3131
with:
32-
bun-version: latest
32+
bun-version: 1.2.22
3333

3434
- name: Install Dependencies
3535
run: bun install --frozen-lockfile

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Bun
1515
uses: oven-sh/setup-bun@v2
1616
with:
17-
bun-version: latest
17+
bun-version: 1.2.22
1818

1919
- name: Install Dependencies
2020
run: bun install

0 commit comments

Comments
 (0)