chore(deps): batch dependabot updates - #37
Merged
Conversation
npm: - @swc/core 1.15.46 -> 1.15.47 - @types/node 26.1.1 -> 26.1.2 - knip 6.29.0 -> 6.30.0 - nx 23.1.0 -> 23.1.1 - oxfmt 0.60.0 -> 0.61.0 - oxlint 1.75.0 -> 1.76.0 github-actions: - actions/checkout v4 -> v7.0.1 (sonar.yml) - jdx/mise-action v2 -> v4.2.3 (sonar.yml) - SonarSource/sonarqube-scan-action v6 -> v8.2.1 - SonarSource/sonarqube-quality-gate-action -> v1.2.0 Supersedes #27 #28 #29 #30 #31 #32 #33 #34 #35 #36 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
gre-ledger
marked this pull request as ready for review
August 3, 2026 13:51
This was referenced Aug 3, 2026
There was a problem hiding this comment.
🟡 Human review recommended
It includes a large lockfile regeneration plus major GitHub Actions upgrades in CI paths (Sonar), which warrants a final human validation of the workflow behavior in CI.
Pull request overview
This PR consolidates multiple Dependabot updates into a single dependency + workflow bump, keeping the monorepo’s tooling (Nx/Knip/SWC/Oxlint/Oxfmt) and Sonar-related GitHub Actions pins current while minimizing lockfile churn.
Changes:
- Bump root dev-tooling dependencies (Nx, Knip) and pnpm catalog versions (@swc/core, @types/node, oxlint, oxfmt).
- Update GitHub Actions pins in Sonar/PR workflows (checkout, mise-action, Sonar scan, Sonar quality gate).
- Regenerate
pnpm-lock.yamlto reflect the new resolved dependency graph.
File summaries
| File | Description |
|---|---|
| pnpm-workspace.yaml | Updates catalog versions for shared tooling dependencies. |
| package.json | Bumps root devDependencies for Nx and Knip. |
| pnpm-lock.yaml | Lockfile regeneration reflecting updated tooling and transitive deps. |
| .github/workflows/sonar.yml | Aligns Sonar workflow action pins with newer releases (checkout/mise/sonar scan). |
| .github/workflows/pull_request.yml | Updates Sonar scan + quality gate action pins for PR checks. |
Review details
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
- Files reviewed: 4/5 changed files
- Comments generated: 0
- Review effort level: Lite
We're testing this review assessment. Please use 👍 or 👎 to tell us if it's correct.
This was referenced Aug 3, 2026
LL782
approved these changes
Aug 4, 2026
LL782
left a comment
Member
There was a problem hiding this comment.
Looks sane!
Caveat: I haven't done any manual testing
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.



✅ Checklist
pnpm changelog) — required for any library API or behaviour changepnpm build && pnpm typecheck && pnpm lint && pnpm testpass locally📝 Description
Single PR replacing the 10 open Dependabot PRs, so the lockfile is resolved once instead of 6 sequential rebases.
npm (catalog + root devDeps)
@swc/core@types/nodeknipnxoxfmtoxlintgithub-actions
actions/checkoutjdx/mise-actionSonarSource/sonarqube-scan-actionSonarSource/sonarqube-quality-gate-actiondc2f7b0sonar.ymlwas added after #22 merged, so it still carried the oldcheckout/mise-actionpins — those are now aligned with the other three workflows.Note
Two deliberate deviations from the Dependabot proposals:
sonarqube-quality-gate-action: Dependabot proposed8e9b0ca, an untagged commit on the default branch (the existingdc2f7b0pin was also untagged, with a stale# v1.1.0comment). Pinned to thev1.2.0release SHA instead, so future bumps track releases rather than drifting withmaster.sonarqube-scan-actionv6 → v8 carries one breaking change:skipSignatureVerificationnow defaults tofalse, so the action GPG-verifies the downloaded scanner binary. Our steps pass nowith:inputs, onlySONAR_TOKEN, so nothing else changes — but this is the one item worth watching on the Sonar jobs in this PR's own CI run.Local verification (all green):
pnpm install --frozen-lockfile,pnpm build,pnpm typecheck,pnpm lint,pnpm test,pnpm format,pnpm knip.🔗 Context
🤖 Generated with Claude Code