Skip to content

Commit 7cd5ab9

Browse files
committed
chore: switch action runtime from node20 to bun via composite action
1 parent aab5233 commit 7cd5ab9

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

action.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,13 @@ inputs:
1919
default: "fixup[bot]"
2020

2121
runs:
22-
using: "node20"
23-
main: "dist/index.js"
22+
using: "composite"
23+
steps:
24+
- uses: oven-sh/setup-bun@v2
25+
- run: bun ${{ github.action_path }}/dist/index.js
26+
shell: bash
27+
env:
28+
INPUT_APP-ID: ${{ inputs.app-id }}
29+
INPUT_PRIVATE-KEY: ${{ inputs.private-key }}
30+
INPUT_FIXERS: ${{ inputs.fixers }}
31+
INPUT_BOT-LOGIN: ${{ inputs.bot-login }}

0 commit comments

Comments
 (0)