Skip to content

chore(deps): bump actions/setup-node from 6 to 7 in the all-actions group across 1 directory - #368

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/all-actions-eefdb6dedd
Open

chore(deps): bump actions/setup-node from 6 to 7 in the all-actions group across 1 directory#368
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/all-actions-eefdb6dedd

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-actions group with 1 update in the / directory: actions/setup-node.

Updates actions/setup-node from 6 to 7

Release notes

Sourced from actions/setup-node's releases.

v7.0.0

What's Changed

Enhancements:

Bug fixes:

Documentation updates:

Dependency update:

New Contributors

Full Changelog: actions/setup-node@v6...v7.0.0

v6.5.0

What's Changed

Full Changelog: actions/setup-node@v6.4.0...v6.5.0

v6.4.0

What's Changed

Dependency updates:

New Contributors

Full Changelog: actions/setup-node@v6...v6.4.0

v6.3.0

What's Changed

Enhancements:

... (truncated)

Commits
  • 8207627 Migrate to ESM and upgrade dependencies (#1574)
  • 04be95c Add cache-primary-key and cache-matched-key as outputs (#1577)
  • 7c2c68d docs: Update caching recommendations to mitigate cache poisoning risks (#1567)
  • 6a61c03 Merge pull request #1569 from jasongin/update-actions-cache-5.1.0
  • 30eb73b Resolve high-severity audit issues
  • 4e1a87a Update dist
  • 360237f Strict equality
  • 4f8aac5 Bump @​actions/cache to 5.1.0, log cache write denied
  • f4a67bb Only use mirrorToken in getManifest if it's provided (#1548)
  • 0355742 Remove dummy NODE_AUTH_TOKEN export (#1558)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-actions group with 1 update in the / directory: [actions/setup-node](https://github.com/actions/setup-node).


Updates `actions/setup-node` from 6 to 7
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v6...v7)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 10, 2026
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Aug 10, 2026

@clestons clestons left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

✅ APPROVE — AAStarCommunity/SuperPaymaster#368 [2-round:纯 action 版本号 bump]

actions/setup-node v6 → v7,只改 .github/workflows/abi-docs.yml 一行。v7 的 release notes 里唯一带破坏性的是 「Remove dummy NODE_AUTH_TOKEN export」,所以我把它当成这次唯一需要落实的判据,查了三件事:

  • 全仓 7 个 workflow 里,NODE_AUTH_TOKEN 出现 0 次,registry-url 也是 0 次 —— 这个仓库从来不走 setup-node 的 npm 发布/鉴权那条路,那条改动够不着它。
  • abi-docs.yml 是唯一用 setup-node 的 workflow,现在整仓只剩 v7 一个版本,没留下版本不一致。
  • 这一步的两个入参都还在 v7 的支持面上:node-version: 20 是显式钉死的(不吃默认值变化),cache: pnpm 仍受支持;而 pnpm/action-setup@v6 排在它前面 —— pnpm 必须先存在,setup-node 才能解析 pnpm 的缓存目录,这个顺序没被这次改动动到。

其余都是加法(新增 cache-primary-key/cache-matched-key 输出、ESM 化、@actions/cache → 5.1.0),对本仓无影响。


本轮实际跑了什么(不虚标)
  • R1a/R1b(DeepSeek-v4-flash):各 0 条,TRIAGE: trivial / clean这次判断是对的 —— 一行 action 版本号,确实没有可从 diff 上读出的缺陷。
  • 我自己(工具实证):gh api .../git/trees?recursive=1 列出全部 7 个 workflow · 逐个拉取并统计 setup-node@vN / NODE_AUTH_TOKEN / registry-url 的出现次数(结果:setup-node 仅 abi-docs 一处且已是 v7;后两者全仓 0)· 读 abi-docs.yml 确认 node-version: 20 显式钉死、cache: pnpm、以及 pnpm/action-setup 排在 setup-node 之前。
  • R2/R3/R4 未跑 —— 纯版本号 bump,按既定规则不跑 Codex PK(没有 findings 可挑战);唯一的破坏性变更点已用全仓 grep 证否。

PR-Daemon v4 · R1a/R1b=deepseek-v4-flash · R2/R3/R4 未跑(纯 bump)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant