Skip to content

Commit

Permalink
Use internal setup-bun action
Browse files Browse the repository at this point in the history
We do not want metrics to come from internal usage. CC @Electroid please remember this going forward.
  • Loading branch information
Jarred-Sumner committed Apr 13, 2024
1 parent 21ad40e commit 7b5065c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bun-release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: ./.github/actions/setup-bun
with:
bun-version: "1.1.0"
- name: Setup Node
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/bun-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: ./.github/actions/setup-bun
with:
bun-version: "1.0.21"
- name: Install Dependencies
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: ./.github/actions/setup-bun
with:
bun-version: "1.0.21"
- name: Install Dependencies
Expand Down Expand Up @@ -112,12 +112,12 @@ jobs:
node-version: latest
- name: Setup Bun
if: ${{ env.BUN_VERSION != 'canary' }}
uses: oven-sh/setup-bun@v1
uses: ./.github/actions/setup-bun
with:
bun-version: "1.0.21"
- name: Setup Bun
if: ${{ env.BUN_VERSION == 'canary' }}
uses: oven-sh/setup-bun@v1
uses: ./.github/actions/setup-bun
with:
bun-version: "canary" # Must be 'canary' so tag is correct
- name: Install Dependencies
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
uses: ./.github/actions/setup-bun
with:
bun-version: "1.0.21"
- name: Install Dependencies
Expand Down

0 comments on commit 7b5065c

Please sign in to comment.