docs(ci): record why the bun dependabot run currently fails - #331
Open
keonik wants to merge 1 commit into
Open
Conversation
Keeping `package-ecosystem: bun`. The monthly run errors because bun 1.4 writes lockfileVersion 2 and Dependabot's bundled bun parses only version 1 (dependabot-core#16071, open). That hard error is itself the fix for #15848, where the old image silently downgraded the lockfile and changed resolutions with no warning. No dependency PRs until #16071 ships. Reverting to `npm` would bring the PRs back but each would carry a stale lockfile and fail CI, which is the noise #329 removed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Comment-only. Keeps
package-ecosystem: bunand writes down why the monthly run is red so it doesn't get "fixed" by reverting #329.The state
bun 1.4 writes
"lockfileVersion": 2; Dependabot's updater image bundles an older bun. There is no flag to make bun emit a v1 lockfile, so nothing can be done locally.Why this error is progress
It is the fix for dependabot-core#15848, where the old image silently discarded a v2 lockfile, regenerated a v1, and changed resolutions with no warning. #15896 made it reject loudly instead. Actual v2 support is #16071 — still open, last updated 2026-08-28.
The trade being accepted
No dependency PRs until #16071 ships. Reverting to
package-ecosystem: npmwould restore them, but every one would arrive with a stalebun.lockand failbun install --frozen-lockfile— exactly the noise #329 cleared. A loud monthly failure beats a stream of red PRs.github-actionsupdates are unaffected and still working.