Skip to content

Commit f5dc180

Browse files
authored
fix(memory): upgrade bun from 1.3.3 to 1.3.9 (#3186)
1 parent 78fef22 commit f5dc180

File tree

12 files changed

+13
-12
lines changed

12 files changed

+13
-12
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM oven/bun:1.3.3-alpine
1+
FROM oven/bun:1.3.9-alpine
22

33
# Install necessary packages for development
44
RUN apk add --no-cache \

.github/workflows/docs-embeddings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Bun
2121
uses: oven-sh/setup-bun@v2
2222
with:
23-
bun-version: 1.3.3
23+
bun-version: 1.3.9
2424

2525
- name: Setup Node
2626
uses: actions/setup-node@v4

.github/workflows/i18n.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Bun
2727
uses: oven-sh/setup-bun@v2
2828
with:
29-
bun-version: 1.3.3
29+
bun-version: 1.3.9
3030

3131
- name: Cache Bun dependencies
3232
uses: actions/cache@v4
@@ -125,7 +125,7 @@ jobs:
125125
- name: Setup Bun
126126
uses: oven-sh/setup-bun@v2
127127
with:
128-
bun-version: 1.3.3
128+
bun-version: 1.3.9
129129

130130
- name: Cache Bun dependencies
131131
uses: actions/cache@v4

.github/workflows/migrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Bun
2020
uses: oven-sh/setup-bun@v2
2121
with:
22-
bun-version: 1.3.3
22+
bun-version: 1.3.9
2323

2424
- name: Cache Bun dependencies
2525
uses: actions/cache@v4

.github/workflows/publish-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Bun
2020
uses: oven-sh/setup-bun@v2
2121
with:
22-
bun-version: 1.3.3
22+
bun-version: 1.3.9
2323

2424
- name: Setup Node.js for npm publishing
2525
uses: actions/setup-node@v4

.github/workflows/publish-ts-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Bun
2020
uses: oven-sh/setup-bun@v2
2121
with:
22-
bun-version: 1.3.3
22+
bun-version: 1.3.9
2323

2424
- name: Setup Node.js for npm publishing
2525
uses: actions/setup-node@v4

.github/workflows/test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Bun
2020
uses: oven-sh/setup-bun@v2
2121
with:
22-
bun-version: 1.3.3
22+
bun-version: 1.3.9
2323

2424
- name: Setup Node
2525
uses: actions/setup-node@v4

bun.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docker/app.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ========================================
22
# Base Stage: Debian-based Bun with Node.js 22
33
# ========================================
4-
FROM oven/bun:1.3.3-slim AS base
4+
FROM oven/bun:1.3.9-slim AS base
55

66
# Install Node.js 22 and common dependencies once in base stage
77
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \

docker/db.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ========================================
22
# Base Stage: Alpine Linux with Bun
33
# ========================================
4-
FROM oven/bun:1.3.3-alpine AS base
4+
FROM oven/bun:1.3.9-alpine AS base
55

66
# ========================================
77
# Dependencies Stage: Install Dependencies

0 commit comments

Comments
 (0)