Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ runs:
steps:
- name: Install Bun
if: inputs.path_to_bun_executable == ''
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # https://github.com/oven-sh/setup-bun/releases/tag/v2.0.2
uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # https://github.com/oven-sh/setup-bun/releases/tag/v2.1.2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The inline comment correctly references v2.1.2 ✅

However, /home/runner/work/claude-code-action/claude-code-action/CLAUDE.md still references the old Bun version "1.2.11" on line 7:

- Runtime: Bun 1.2.11

This should be updated to:

Suggested change
uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # https://github.com/oven-sh/setup-bun/releases/tag/v2.1.2
- Runtime: Bun 1.3.6

with:
bun-version: 1.2.11
bun-version: 1.3.6
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The bun-version is correctly updated to 1.3.6 ✅

Note: /home/runner/work/claude-code-action/claude-code-action/package.json has "@types/bun": "1.2.11" on line 25. While this is a devDependency and doesn't necessarily need to match the runtime version exactly, you may want to consider updating it to match or checking if a newer version is available.


- name: Setup Custom Bun Path
if: inputs.path_to_bun_executable != ''
Expand Down
4 changes: 2 additions & 2 deletions base-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ runs:

- name: Install Bun
if: inputs.path_to_bun_executable == ''
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # https://github.com/oven-sh/setup-bun/releases/tag/v2.0.2
uses: oven-sh/setup-bun@3d267786b128fe76c2f16a390aa2448b815359f3 # https://github.com/oven-sh/setup-bun/releases/tag/v2.1.2
with:
bun-version: 1.2.11
bun-version: 1.3.6

- name: Setup Custom Bun Path
if: inputs.path_to_bun_executable != ''
Expand Down
Loading