Skip to content

deps(actions): bump actions/setup-node from 6 to 7 - #98

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/setup-node-7
Closed

deps(actions): bump actions/setup-node from 6 to 7#98
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/setup-node-7

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 18, 2026

Copy link
Copy Markdown
Contributor

Bumps 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/setup-node](https://github.com/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
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 18, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies, github-actions. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@pacphi

pacphi commented Jul 18, 2026

Copy link
Copy Markdown
Owner

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@pacphi

pacphi commented Jul 26, 2026

Copy link
Copy Markdown
Owner

Superseded by #99, which consolidates this bump (latest-compatible) along with the other 16 open PRs into a single branch. Closing in favor of #99.

@pacphi pacphi closed this Jul 26, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 26, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/github_actions/actions/setup-node-7 branch July 26, 2026 16:38
pacphi added a commit that referenced this pull request Jul 26, 2026
* chore(deps): consolidate Dependabot PRs #82#98 + security fixes

Applies all 17 open Dependabot bumps (Rust crates, frontend packages,
GitHub Actions, Docker base image) on one branch instead of merging 17
conflicting lockfile diffs, plus fixes for advisories the bumps
surfaced or left unaddressed:

- react-router-dom's own react-router@7.18.1 stayed vulnerable to a
  high-severity CSRF bypass (GHSA-qwww-vcr4-c8h2) even after bumping
  the top-level react-router dependency to 8.3.0, because nothing
  imported from it. Migrated all 14 import sites from
  react-router-dom to react-router (v8 folds DOM bindings into the
  main package) and dropped the now-unused react-router-dom dep.
- js-yaml 4->5 dropped its CJS default export; fixed the one call
  site (configStore.ts) to use the named `load` export.
- Rust RUSTSEC-2026-0195/0194/0185/0190/0186/0204 (quick-xml,
  quinn-proto, anyhow, memmap2, crossbeam-epoch): bumped calamine
  0.35->0.36 and quick-xml 0.40->0.41 (both required for the fix and
  collapse 3 duplicate quick-xml resolutions into 1), plus lockfile
  updates for the rest.
- pnpm audit (postcss, undici, brace-expansion): transitive lockfile
  bumps within existing semver ranges.

serde_with and cmov bumps also close open Dependabot security alerts
(GHSA-7gcf-g7xr-8hxj, GHSA-3rjw-m598-pq24).

* fix(api): silence dead_code false-positive on default_true

cargo clippy --workspace --all-targets fails on the bin crate's test
variant: dead-code reachability there roots at the test harness, not
the real main, so the route path that calls default_true() (via
ConfirmRequest's #[serde(default = "default_true")] on
skip_duplicates) isn't visible. ConfirmRequest already carries the
same #[allow(dead_code)] one line above for the identical reason.

Pre-existing on main independent of this PR's dependency bumps -
reproduces under rustc 1.97.1 (what CI's dtolnay/rust-toolchain@stable
resolves to today) against unmodified main; main's last green CI run
predates that toolchain.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant