@@ -52,7 +52,8 @@ async function run(octokit, context, token) {
5252
5353let yarnLock = await fileExists ( path . resolve ( cwd , 'yarn.lock' ) ) ;
5454let pnpmLock = await fileExists ( path . resolve ( cwd , 'pnpm-lock.yaml' ) ) ;
55- let bunLock = await fileExists ( path . resolve ( cwd , 'bun.lockb' ) ) ;
55+ let bunLockb = await fileExists ( path . resolve ( cwd , 'bun.lockb' ) ) ;
56+ let bunLock = await fileExists ( path . resolve ( cwd , 'bun.lock' ) ) ;
5657let packageLock = await fileExists ( path . resolve ( cwd , 'package-lock.json' ) ) ;
5758
5859let packageManager = 'npm' ;
@@ -63,7 +64,7 @@ async function run(octokit, context, token) {
6364} else if ( pnpmLock ) {
6465installScript = 'pnpm install --frozen-lockfile' ;
6566packageManager = 'pnpm' ;
66- } else if ( bunLock ) {
67+ } else if ( bunLockb || bunLock ) {
6768installScript = 'bun install --frozen-lockfile' ;
6869packageManager = 'bun' ;
6970} else if ( packageLock ) {
@@ -129,7 +130,8 @@ async function run(octokit, context, token) {
129130
130131yarnLock = await fileExists ( path . resolve ( cwd , 'yarn.lock' ) ) ;
131132pnpmLock = await fileExists ( path . resolve ( cwd , 'pnpm-lock.yaml' ) ) ;
132- bunLock = await fileExists ( path . resolve ( cwd , 'bun.lockb' ) ) ;
133+ bunLockb = await fileExists ( path . resolve ( cwd , 'bun.lockb' ) ) ;
134+ bunLock = await fileExists ( path . resolve ( cwd , 'bun.lock' ) ) ;
133135packageLock = await fileExists ( path . resolve ( cwd , 'package-lock.json' ) ) ;
134136
135137packageManager = 'npm' ;
@@ -140,7 +142,7 @@ async function run(octokit, context, token) {
140142} else if ( pnpmLock ) {
141143installScript = `pnpm install --frozen-lockfile` ;
142144packageManager = `pnpm` ;
143- } else if ( bunLock ) {
145+ } else if ( bunLockb || bunLock ) {
144146installScript = `bun install --frozen-lockfile` ;
145147packageManager = `bun` ;
146148} else if ( packageLock ) {