From 80bbad6568322528e1b8a8d308e0b4113bfa3e2d Mon Sep 17 00:00:00 2001 From: Noah Friedman Date: Fri, 5 Jul 2024 21:54:53 -0400 Subject: [PATCH] `setup-bun` action bumped to v2 in docs (#12315) --- docs/guides/runtime/cicd.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/runtime/cicd.md b/docs/guides/runtime/cicd.md index c6d6a36a3b..b94d22140a 100644 --- a/docs/guides/runtime/cicd.md +++ b/docs/guides/runtime/cicd.md @@ -13,7 +13,7 @@ jobs: steps: # ... - uses: actions/checkout@v4 -+ - uses: oven-sh/setup-bun@v1 ++ - uses: oven-sh/setup-bun@v2 # run any `bun` or `bunx` command + - run: bun install @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: # ... - - uses: oven-sh/setup-bun@v1 + - uses: oven-sh/setup-bun@v2 + with: + bun-version: 1.0.11 # or "latest", "canary", ```