Skip to content

Commit c58290a

Browse files
committed
fix(memory): upgrade bun from 1.3.9 to 1.3.10
1 parent 06c8844 commit c58290a

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-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.9-alpine
1+
FROM oven/bun:1.3.10-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.9
23+
bun-version: 1.3.10
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
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Bun
2424
uses: oven-sh/setup-bun@v2
2525
with:
26-
bun-version: 1.3.9
26+
bun-version: 1.3.10
2727

2828
- name: Cache Bun dependencies
2929
uses: actions/cache@v4
@@ -122,7 +122,7 @@ jobs:
122122
- name: Setup Bun
123123
uses: oven-sh/setup-bun@v2
124124
with:
125-
bun-version: 1.3.9
125+
bun-version: 1.3.10
126126

127127
- name: Cache Bun dependencies
128128
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.9
22+
bun-version: 1.3.10
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.9
22+
bun-version: 1.3.10
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.9
22+
bun-version: 1.3.10
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.9
22+
bun-version: 1.3.10
2323

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

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.9-slim AS base
4+
FROM oven/bun:1.3.10-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.9-alpine AS base
4+
FROM oven/bun:1.3.10-alpine AS base
55

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

docker/realtime.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.9-alpine AS base
4+
FROM oven/bun:1.3.10-alpine AS base
55

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

0 commit comments

Comments
 (0)