Skip to content

Commit d6876a0

Browse files
committed
ci(bun): restore setup-bun default to 'latest' to avoid breaking existing workflows; pin 1.3.0 only in build-package composite used by scanners
1 parent 5aa0175 commit d6876a0

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/actions/build-package/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ outputs:
77
runs:
88
using: composite
99
steps:
10-
- name: Setup Bun
10+
- name: Setup Bun (1.3.0 for strict build script)
1111
uses: ./.github/actions/setup-bun
12+
with:
13+
bun-version: '1.3.0'
1214

1315
- name: Verify Bun
1416
shell: bash

.github/actions/setup-bun/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: setup-bun
22
description: Setup Bun with optional version pinning and basic cache
33
inputs:
44
bun-version:
5-
description: Version of Bun to install (e.g., 1.3.0)
5+
description: Version of Bun to install (e.g., 1.3.1 or latest)
66
required: false
7-
default: '1.3.0'
7+
default: 'latest'
88
runs:
99
using: composite
1010
steps:

0 commit comments

Comments
 (0)