Skip to content

Bump actions/setup-node from 6 to 7 in the github group - #230

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

Bump actions/setup-node from 6 to 7 in the github group#230
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/github-eefdb6dedd

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the github group with 1 update: 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 github group with 1 update: [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: github
...

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 1, 2026
@rtibblesbot

rtibblesbot commented Aug 1, 2026

Copy link
Copy Markdown
Contributor

🔵 Review posted

Last updated: 2026-08-01 00:08 UTC

@rtibblesbot rtibblesbot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

PR #230 — dependency update review.

Package: actions/setup-node v6 → v7 (grouped update github, single member)
Semver risk: Major
Type: CI/release tooling (not a runtime dependency)
CI: All file linting failing — pre-existing repo-wide drift, not caused by this bump. All Python unit-test jobs (3.6–3.14) pass.

Changelog

  • Breaking — dummy NODE_AUTH_TOKEN export removed (#1558). v6 always ran core.exportVariable('NODE_AUTH_TOKEN', process.env.NODE_AUTH_TOKEN || 'XXXXX-...'); v7 exports it only if already set. Upstream scopes the impact: legacy Yarn Classic and older Node/npm may fail, pnpm may warn — "npm Trusted Publishing (OIDC) is not affected, since it does not use NODE_AUTH_TOKEN."
  • Breaking — ESM migration (#1574). No changes to inputs, outputs, or behavior; action.yml at v7 still declares runs.using: 'node24', same as v6.
  • Deprecations: none.
  • Security: no CVEs for v7.0.0 itself; @actions/cache → 5.1.0 pulls security overrides for undici and fast-xml-parser. Not exercised — this workflow does not enable caching.
  • New peer deps / required inputs: none. Two additive outputs (cache-primary-key, cache-matched-key).

Compatibility

The only usage is .github/workflows/npm-publish.yml:15 (grep -rn setup-node .github/ returns one line). That workflow declares id-token: write # Required for npm trusted publishing (OIDC), and NODE_AUTH_TOKEN/NPM_TOKEN appear nowhere in the repo — a pure OIDC trusted-publishing setup, exactly the case upstream says is unaffected. No code changes required.

Notes

  • Unverifiable by CI. npm-publish.yml triggers only on release: published, so no check in this PR runs actions/setup-node. Green CI shows the bump breaks nothing else; it is not evidence that publishing still works. The first real test is the next release — if make release-npm fails at the auth step, the symptom is npm failing to resolve ${NODE_AUTH_TOKEN} from the generated .npmrc; revert to actions/setup-node@v6.
  • All file linting is unrelated. Every prek hook passes (including actionlint); the failure is the build hook regenerating js/package.json from the setuptools-scm version (0.2.180.2.19). PRs #231 and #202 fail with a byte-identical diff, so it blocks every open PR and should be fixed separately by committing the regenerated file.

@rtibblesbot's comments are generated by an LLM, and should be evaluated accordingly

How was this generated?

Ran a dependency-update review pipeline over the version bump:

  • Classified the bump by semver (patch / minor / major) and dependency type (production vs. development)
  • Extracted the changelog and release notes across the version range
  • Assessed compatibility with this project's usage and whether any code changes are required
  • Treated CI as the primary safety net
  • Scaled the review depth to the update's risk
  • Chose the verdict from semver risk, changelog findings, and CI status

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