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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Install wasm-pack
uses: jetli/[email protected]
with:
version: '0.12.1'
version: 'latest'
Copy link

Copilot AI Oct 9, 2025

Choose a reason for hiding this comment

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

Using 'latest' for dependency versions in CI/CD pipelines can lead to unpredictable builds and potential breakage when new versions are released. Consider pinning to a specific recent version (e.g., '0.13.0') to ensure reproducible builds while still staying current.

Suggested change
version: 'latest'
version: '0.12.1'

Copilot uses AI. Check for mistakes.

- name: Setup Node
uses: actions/setup-node@v4
Expand Down
Loading