From 3fe67d5c98a22edc32cb0d3de5edc05b722dd68e Mon Sep 17 00:00:00 2001 From: Joe Boccanfuso <109477394+jbocce@users.noreply.github.com> Date: Tue, 14 Oct 2025 12:55:32 -0400 Subject: [PATCH] fix(bun): Use fixed bun version (#5493) --- .circleci/config.yml | 2 +- .github/workflows/build-docs.yml | 2 ++ .github/workflows/playwright.yml | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f336c54db..b7acd7493 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ commands: name: Install Bun command: | if [ ! -d "$HOME/.bun" ]; then - curl -fsSL https://bun.sh/install | bash + curl -fsSL https://bun.sh/install | bash -s "bun-v1.2.23" fi echo 'export BUN_INSTALL="$HOME/.bun"' >> $BASH_ENV echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> $BASH_ENV diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index d091f610c..cb5554064 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -23,6 +23,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.2.23 - uses: actions/setup-node@v4 with: node-version: 20 # Or your desired Node version diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 12b108800..c5c8e025e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -18,6 +18,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.2.23 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }}