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 }}