From cc081ca64c1f2c086a286b0f9046d22ae10f1a1c Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Mon, 2 Feb 2026 18:20:45 +0100 Subject: [PATCH] fix: downgrade bun to 1.3.6 Closes #457 (related to https://github.com/oven-sh/bun/issues/26544) --- .github/actions/install-dependencies/action.yml | 2 +- Dockerfile | 2 +- bun.lock | 2 +- package.json | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 50533005..f838c8a4 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -8,7 +8,7 @@ runs: - uses: oven-sh/setup-bun@v2 name: Install Bun with: - bun-version: "1.3.8" + bun-version: "1.3.6" - name: Install dependencies shell: bash diff --git a/Dockerfile b/Dockerfile index 3f6c6388..6686daaa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BUN_VERSION="1.3.8" +ARG BUN_VERSION="1.3.6" FROM oven/bun:${BUN_VERSION}-alpine AS base diff --git a/bun.lock b/bun.lock index efa5c353..7e866dbd 100644 --- a/bun.lock +++ b/bun.lock @@ -78,7 +78,7 @@ "@tanstack/react-query-devtools": "^5.91.2", "@testing-library/dom": "^10.4.1", "@testing-library/react": "^16.3.2", - "@types/bun": "^1.3.8", + "@types/bun": "^1.3.6", "@types/node": "^25.1.0", "@types/react": "^19.2.10", "@types/react-dom": "^19.2.3", diff --git a/package.json b/package.json index b53208b0..cc554cb0 100644 --- a/package.json +++ b/package.json @@ -98,7 +98,7 @@ "@tanstack/react-query-devtools": "^5.91.2", "@testing-library/dom": "^10.4.1", "@testing-library/react": "^16.3.2", - "@types/bun": "^1.3.8", + "@types/bun": "^1.3.6", "@types/node": "^25.1.0", "@types/react": "^19.2.10", "@types/react-dom": "^19.2.3", @@ -122,5 +122,5 @@ "overrides": { "esbuild": "^0.27.2" }, - "packageManager": "bun@1.3.8" + "packageManager": "bun@1.3.6" }