chore(deps): bump dependencies - #848
Merged
Merged
Conversation
Node/pnpm: - @angular/common 22.1.0 -> 22.1.1 - @angular/compiler 22.1.0 -> 22.1.1 - @angular/compiler-cli 22.1.0 -> 22.1.1 - @angular/core 22.1.0 -> 22.1.1 - @angular/forms 22.1.0 -> 22.1.1 - @angular/platform-browser 22.1.0 -> 22.1.1 - @angular/platform-browser-dynamic 22.1.0 -> 22.1.1 - @angular/router 22.1.0 -> 22.1.1 - @testing-library/angular 19.4.1 -> 19.4.2 - eslint 10.8.0 -> 10.8.1 - survey-angular-ui 2.5.37 -> 2.5.38 - survey-core 2.5.37 -> 2.5.38 - tsx 4.23.9 -> 4.23.12 (supersedes Dependabot #847) - @types/node 26.1.2 -> 26.2.0 - @typescript-eslint/eslint-plugin 8.66.0 -> 8.67.0 - @typescript-eslint/parser 8.66.0 -> 8.67.0 - typescript-eslint 8.66.0 -> 8.67.0 Security fixes: - nanoid 3.3.16 -> 3.3.18 via new pnpm override ">=3.3.17 <4" (CVE-2026-67213, HIGH; transitive through postcss) Held back: - @antv/x6 3.1.7 -> 3.1.8: exact pin guards the version-keyed pnpm patch for antvis/X6#5048 - @oxc-project/runtime 0.143.0 -> 0.144.0: 0.x minor whose helpers pair with the oxc version inside rolldown/vite; needs deliberate review - typescript 6.0.3 -> 7.0.2 (major, tracked by #845) - @types/jsdom 28.0.3 -> 30.0.0 (two majors) Validated: build, 6053 unit tests, lint:all, and a cold-boot `ng serve` smoke (browser console clean) all pass.
This was referenced Aug 11, 2026
ericfitz
added a commit
that referenced
this pull request
Aug 11, 2026
Every action pinned in the four workflows ran on the deprecated node20 runtime and was being force-run on Node 24 by the runner. That warning preceded the `bump` job in Version Bump hanging: all of its steps reported success but the check-run never finalized, leaving PR #848 stuck at UNSTABLE with a phantom in_progress check. - actions/checkout v4 -> v7 - actions/setup-node v4 -> v7 - actions/create-github-app-token v1 -> v3 - actions/cache v4 -> v6 - actions/upload-artifact v4 -> v7 - pnpm/action-setup v4 -> v6 - github/codeql-action/{init,analyze} v3 -> v4 Compatibility checked against the breaking changes in each major: - create-github-app-token v2 removed the snake_case inputs and made app-id/private-key required; all three call sites already use the hyphenated required form. v3 needs NODE_USE_ENV_PROXY only for proxy setups, which we do not use. - setup-node v5 auto-caches when package.json has a packageManager field, which would have broken the jobs that set up Node before pnpm. v6 narrowed that to npm only, and this repo declares pnpm, so landing directly on v7 skips the hazard entirely. - checkout v7 blocks fork checkouts for pull_request_target and workflow_run; no workflow here uses either trigger. v6 moved persisted credentials to a separate file, but persist-credentials still defaults true, so the Version Bump push keeps working, and deps-bump already sets it false and pushes with the App token explicitly. - pnpm/action-setup reads the version from packageManager (pnpm 10.34.4) at every call site; v6 only adds pnpm 11 support. - codeql-action v4 forked from 3.x at 4.30.7 solely for the Node 24 runtime. The only removed input, add-snippets, is not used here, and the local config-file path form is still accepted. Verified with actionlint (clean apart from a pre-existing SC2086 info at codeql.yml:43) and pnpm run lint:all.
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.
chore(deps): bump dependencies
Node/pnpm:
Security fixes:
(CVE-2026-67213, HIGH; transitive through postcss)
Held back:
for v3.1.7 包的 module 声明与 CJS 产物冲突,导致 Node.js ESM 加载失败 antvis/X6#5048
with the oxc version inside rolldown/vite; needs deliberate review
Validated: build, 6053 unit tests, lint:all, and a cold-boot
ng servesmoke (browser console clean) all pass.