Skip to content

Commit 56145e7

Browse files
committed
chore(ci): bump Bun to 1.3.12 to fix vi.mock barrel export resolution
Bun 1.3.11 fails to register named exports from `export * from "..."` re-exports inside test files that vi.mock the parent module — the agent cache.test.ts hit it on @databuddy/redis after the recent test churn, throwing "Export named 'getAgentContextSnapshotKey' not found" even though the export is plainly present at packages/redis/index.ts. 1.3.12 fixes the resolution path; the test suite is stable on it locally across five back-to-back runs. Bumps every workflow that pins setup-bun.
1 parent 0e25835 commit 56145e7

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
3232
with:
33-
bun-version: "1.3.11"
33+
bun-version: "1.3.12"
3434
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
3535
with:
3636
path: ~/.bun/install/cache
@@ -47,7 +47,7 @@ jobs:
4747
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4848
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
4949
with:
50-
bun-version: "1.3.11"
50+
bun-version: "1.3.12"
5151
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
5252
with:
5353
path: ~/.bun/install/cache
@@ -118,7 +118,7 @@ jobs:
118118
fetch-depth: 2
119119
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
120120
with:
121-
bun-version: "1.3.11"
121+
bun-version: "1.3.12"
122122
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
123123
with:
124124
path: ~/.bun/install/cache

.github/workflows/dashboard-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
9191
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
9292
with:
93-
bun-version: "1.3.11"
93+
bun-version: "1.3.12"
9494
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
9595
with:
9696
path: ~/.bun/install/cache

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2828
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
2929
with:
30-
bun-version: "1.3.11"
30+
bun-version: "1.3.12"
3131
- run: bun install --frozen-lockfile --ignore-scripts
3232
- run: bun audit --audit-level=high

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
3939
with:
40-
bun-version: "1.3.11"
40+
bun-version: "1.3.12"
4141
- uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
4242
with:
4343
path: ~/.bun/install/cache

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
2626
with:
27-
bun-version: "1.3.11"
27+
bun-version: "1.3.12"
2828

2929
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
3030
with:

0 commit comments

Comments
 (0)