Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org'

- name: Use Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
Copy link

Copilot AI Dec 2, 2025

Choose a reason for hiding this comment

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

Consider pinning to a specific Bun version instead of using 'latest' for more reproducible builds. This is especially important for release workflows where consistency and predictability are critical. For example, you could use a specific version like bun-version: 1.3.3 to match the bun-types version specified in tests/runtimes/bun/package.json.

Suggested change
bun-version: latest
bun-version: 1.3.3

Copilot uses AI. Check for mistakes.

- name: Install dependencies
run: pnpm install --frozen-lockfile

Expand Down