fix(ci): sync bun.lock and merge dependabot updates#30
Merged
Conversation
- Bump actions/checkout from v6 to v7 - Bump fumadocs-mdx from 15.0.10 to 15.0.13 - Bump tailwindcss from 4.2.2 to 4.3.2 - Sync bun.lock with package.json (fixes frozen lockfile CI failures) - Fix formatting issues flagged by oxfmt Co-authored-by: Bartosz Zagrodzki <Bartek532@users.noreply.github.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-authored-by: Bartosz Zagrodzki <Bartek532@users.noreply.github.com>
postinstall runs build:colors which was overwriting the formatted colors.css and causing the format CI job to fail. Co-authored-by: Bartosz Zagrodzki <Bartek532@users.noreply.github.com>
Co-authored-by: Bartosz Zagrodzki <Bartek532@users.noreply.github.com>
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.
Summary
Fixes CI failures on all open Dependabot PRs and incorporates their dependency updates into main.
Root cause
bun.lockwas out of sync withpackage.json(e.g.next@16.2.9in package.json butnext@16.2.7in lockfile). CI usesbun install --frozen-lockfile, which failed on main and all Dependabot branches. Dependabot was also updatingpnpm-lock.yamlwhile the project uses Bun.Changes
actions/checkoutfrom v6 to v7 (PR chore(deps): bump actions/checkout from 6 to 7 #27)fumadocs-mdxfrom 15.0.10 to 15.0.13 (PR chore(deps): bump fumadocs-mdx from 15.0.10 to 15.0.13 #28)tailwindcssfrom 4.2.2 to 4.3.2 (PR chore(deps-dev): bump tailwindcss from 4.3.0 to 4.3.2 #29)bun.lockwithpackage.jsonoxfmtValidation
bun install --frozen-lockfile✓bun run lint✓bun run format✓bun run build✓