Skip to content
Closed
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 mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ minimum_release_age = "3d"

[tools]
node = "24.16.0"
prek = "0.4.3"
prek = "0.4.4"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical | ⚡ Quick win

Critical: Update mise.lock to include prek@0.4.4.

The pipeline is failing because the lockfile does not contain the new prek version. When lockfile = true (line 6), CI runs mise install --locked, which requires all tool versions to exist in mise.lock.

🔧 Proposed fix

Run this command locally to regenerate the lockfile with prek@0.4.4:

mise install

Then commit the updated mise.lock file to this PR.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@mise.toml` at line 14, The lockfile is missing the newly bumped prek =
"0.4.4" while lockfile = true forces CI to use mise.lock; regenerate and commit
an updated lockfile by running `mise install` locally to update mise.lock so it
includes prek@0.4.4, verify the updated mise.lock contains the new prek entry,
then add and commit the updated mise.lock to the PR.


# pnpm ignores the `os` field on workspace packages, so the Termux shim's
# bin doesn't get auto-symlinked into node_modules/.bin via the usual
Expand Down
Loading