From 9bc6c9aad6c743f6a29f289c4c84b72cc165fe69 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Thu, 14 May 2026 14:55:35 -0400 Subject: [PATCH] fix(ci): Pin Bun version to 1.3.14 in CI Previously setup-bun installed latest by default, which could cause unexpected breakage when new Bun versions are released. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2a7e1dd97555..228f3fbdf88e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -502,6 +502,8 @@ jobs: node-version-file: 'package.json' - name: Set up Bun uses: oven-sh/setup-bun@v2 + with: + bun-version: '1.3.14' - name: Restore caches uses: ./.github/actions/restore-cache with: @@ -884,6 +886,8 @@ jobs: node-version-file: 'package.json' - name: Set up Bun uses: oven-sh/setup-bun@v2 + with: + bun-version: '1.3.14' - name: Restore caches uses: ./.github/actions/restore-cache with: @@ -1011,6 +1015,8 @@ jobs: contains(fromJSON('["node-exports-test-app","nextjs-16-bun", "elysia-bun", "hono-4"]'), matrix.test-application) uses: oven-sh/setup-bun@v2 + with: + bun-version: '1.3.14' - name: Set up AWS SAM if: matrix.test-application == 'aws-serverless' || matrix.test-application == 'aws-serverless-layer' uses: aws-actions/setup-sam@v2