Skip to content

chore(ci): bump actions/setup-node from 4 to 6#1

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

chore(ci): bump actions/setup-node from 4 to 6#1
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/github_actions/actions/setup-node-6

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 9, 2026

Bumps actions/setup-node from 4 to 6.

Release notes

Sourced from actions/setup-node's releases.

v6.0.0

What's Changed

Breaking Changes

Dependency Upgrades

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

v5.0.0

What's Changed

Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless. To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: actions/setup-node@v4...v5.0.0

v4.4.0

... (truncated)

Commits

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)

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 9, 2026

Labels

The following labels could not be found: scope/infra, type/dependencies. Please create them before Dependabot can add them to a pull request.

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

@github-actions github-actions Bot added size/S Small PR (11-50 lines) scope/infra Infrastructure changes and removed size/S Small PR (11-50 lines) labels Feb 9, 2026
@dependabot dependabot Bot force-pushed the dependabot/github_actions/actions/setup-node-6 branch from 8a6a16e to 462f2c8 Compare February 9, 2026 22:29
@vercel
Copy link
Copy Markdown
Contributor

vercel Bot commented Feb 9, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
naap-platform Ready Ready Preview, Comment Feb 9, 2026 10:44pm

Request Review

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 6.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4...v6)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/github_actions/actions/setup-node-6 branch from de98b23 to 993d8e9 Compare February 9, 2026 22:42
@seanhanca
Copy link
Copy Markdown
Contributor

Closing: main has been updated with the develop merge. Dependabot will re-create if still needed.

@seanhanca seanhanca closed this Feb 10, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 10, 2026

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-6 branch February 10, 2026 01:05
eliteprox added a commit that referenced this pull request Feb 11, 2026
Address 103 high-severity CodeQL alerts across 34 files:

**Insecure temporary files (js/insecure-temporary-file) — 20 alerts:**
- Replace predictable temp paths with crypto.randomUUID() and fs.mkdtempSync()

**User-controlled bypass (js/user-controlled-bypass) — 14 alerts:**
- Add typeof checks for auth tokens, codes, emails, passwords
- Remove user-controlled skipVerification flag from publish endpoints
- Validate GitHub webhook headers with typeof guards
- Add OAuth error code allowlist in callback handler

**Remote property injection (js/remote-property-injection) — 6 alerts:**
- Block __proto__, constructor, prototype keys in config merge/assignment

**File system race (js/file-system-race) — 3 alerts:**
- Replace TOCTOU check-then-read with try/catch around direct operations

**Tainted format string (js/tainted-format-string) — 5 alerts:**
- Sanitize user input (strip control chars/newlines) before logging

**Incomplete sanitization + bad HTML filter (js/bad-tag-filter) — 2 alerts:**
- Replace single-pass regex HTML stripping with iterative loop

**Path injection (js/path-injection) — 20 alerts:**
- Add safeResolvePath() for storage paths
- Add sanitizePathComponent() for plugin/version path segments
- Add validateFilePath() for uploaded file paths

**SQL injection (js/sql-injection) — 5 alerts:**
- Add validateIdentifier() strict allowlist for DDL identifiers
- Sanitize database names, usernames, and passwords

**XSS through DOM (js/xss-through-dom) — 2 alerts:**
- Validate avatar URLs with URL constructor, block javascript: URIs

**Reflected XSS (js/reflected-xss) — 1 alert:**
- Validate plugin name against allowlist before HTML interpolation

**Insecure download (js/insecure-download) — 2 alerts:**
- Enforce HTTPS protocol validation before fetch calls

**Insecure randomness (js/insecure-randomness) — 1 alert:**
- Replace Math.random() with crypto.randomInt()

**Insufficient password hash (js/insufficient-password-hash) — 2 alerts:**
- Replace SHA-256 with crypto.scryptSync for API key hashing

**Missing rate limiting (js/missing-rate-limiting) — 13 alerts:**
- Add in-memory rate limiting to auth, registry, embed, and config routes

**Insecure Helmet configuration (js/insecure-helmet-configuration) — 2 alerts:**
- Replace disabled CSP with proper CSP directives

**Incomplete URL sanitization (js/incomplete-url-substring-sanitization) — 5 alerts:**
- Replace string includes/startsWith with URL constructor parsing

Alerts fixed: #1-50, #52-53, #57-61, #76-77, #82-97, #102-128, #279-280

Co-authored-by: Cursor <cursoragent@cursor.com>
seanhanca pushed a commit that referenced this pull request Feb 12, 2026
Address 103 high-severity CodeQL alerts across 34 files:

**Insecure temporary files (js/insecure-temporary-file) — 20 alerts:**
- Replace predictable temp paths with crypto.randomUUID() and fs.mkdtempSync()

**User-controlled bypass (js/user-controlled-bypass) — 14 alerts:**
- Add typeof checks for auth tokens, codes, emails, passwords
- Remove user-controlled skipVerification flag from publish endpoints
- Validate GitHub webhook headers with typeof guards
- Add OAuth error code allowlist in callback handler

**Remote property injection (js/remote-property-injection) — 6 alerts:**
- Block __proto__, constructor, prototype keys in config merge/assignment

**File system race (js/file-system-race) — 3 alerts:**
- Replace TOCTOU check-then-read with try/catch around direct operations

**Tainted format string (js/tainted-format-string) — 5 alerts:**
- Sanitize user input (strip control chars/newlines) before logging

**Incomplete sanitization + bad HTML filter (js/bad-tag-filter) — 2 alerts:**
- Replace single-pass regex HTML stripping with iterative loop

**Path injection (js/path-injection) — 20 alerts:**
- Add safeResolvePath() for storage paths
- Add sanitizePathComponent() for plugin/version path segments
- Add validateFilePath() for uploaded file paths

**SQL injection (js/sql-injection) — 5 alerts:**
- Add validateIdentifier() strict allowlist for DDL identifiers
- Sanitize database names, usernames, and passwords

**XSS through DOM (js/xss-through-dom) — 2 alerts:**
- Validate avatar URLs with URL constructor, block javascript: URIs

**Reflected XSS (js/reflected-xss) — 1 alert:**
- Validate plugin name against allowlist before HTML interpolation

**Insecure download (js/insecure-download) — 2 alerts:**
- Enforce HTTPS protocol validation before fetch calls

**Insecure randomness (js/insecure-randomness) — 1 alert:**
- Replace Math.random() with crypto.randomInt()

**Insufficient password hash (js/insufficient-password-hash) — 2 alerts:**
- Replace SHA-256 with crypto.scryptSync for API key hashing

**Missing rate limiting (js/missing-rate-limiting) — 13 alerts:**
- Add in-memory rate limiting to auth, registry, embed, and config routes

**Insecure Helmet configuration (js/insecure-helmet-configuration) — 2 alerts:**
- Replace disabled CSP with proper CSP directives

**Incomplete URL sanitization (js/incomplete-url-substring-sanitization) — 5 alerts:**
- Replace string includes/startsWith with URL constructor parsing

Alerts fixed: #1-50, #52-53, #57-61, #76-77, #82-97, #102-128, #279-280

Co-authored-by: Cursor <cursoragent@cursor.com>
seanhanca pushed a commit that referenced this pull request Feb 12, 2026
Address 103 high-severity CodeQL alerts across 34 files:

**Insecure temporary files (js/insecure-temporary-file) — 20 alerts:**
- Replace predictable temp paths with crypto.randomUUID() and fs.mkdtempSync()

**User-controlled bypass (js/user-controlled-bypass) — 14 alerts:**
- Add typeof checks for auth tokens, codes, emails, passwords
- Remove user-controlled skipVerification flag from publish endpoints
- Validate GitHub webhook headers with typeof guards
- Add OAuth error code allowlist in callback handler

**Remote property injection (js/remote-property-injection) — 6 alerts:**
- Block __proto__, constructor, prototype keys in config merge/assignment

**File system race (js/file-system-race) — 3 alerts:**
- Replace TOCTOU check-then-read with try/catch around direct operations

**Tainted format string (js/tainted-format-string) — 5 alerts:**
- Sanitize user input (strip control chars/newlines) before logging

**Incomplete sanitization + bad HTML filter (js/bad-tag-filter) — 2 alerts:**
- Replace single-pass regex HTML stripping with iterative loop

**Path injection (js/path-injection) — 20 alerts:**
- Add safeResolvePath() for storage paths
- Add sanitizePathComponent() for plugin/version path segments
- Add validateFilePath() for uploaded file paths

**SQL injection (js/sql-injection) — 5 alerts:**
- Add validateIdentifier() strict allowlist for DDL identifiers
- Sanitize database names, usernames, and passwords

**XSS through DOM (js/xss-through-dom) — 2 alerts:**
- Validate avatar URLs with URL constructor, block javascript: URIs

**Reflected XSS (js/reflected-xss) — 1 alert:**
- Validate plugin name against allowlist before HTML interpolation

**Insecure download (js/insecure-download) — 2 alerts:**
- Enforce HTTPS protocol validation before fetch calls

**Insecure randomness (js/insecure-randomness) — 1 alert:**
- Replace Math.random() with crypto.randomInt()

**Insufficient password hash (js/insufficient-password-hash) — 2 alerts:**
- Replace SHA-256 with crypto.scryptSync for API key hashing

**Missing rate limiting (js/missing-rate-limiting) — 13 alerts:**
- Add in-memory rate limiting to auth, registry, embed, and config routes

**Insecure Helmet configuration (js/insecure-helmet-configuration) — 2 alerts:**
- Replace disabled CSP with proper CSP directives

**Incomplete URL sanitization (js/incomplete-url-substring-sanitization) — 5 alerts:**
- Replace string includes/startsWith with URL constructor parsing

Alerts fixed: #1-50, #52-53, #57-61, #76-77, #82-97, #102-128, #279-280

Co-authored-by: Cursor <cursoragent@cursor.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

scope/infra Infrastructure changes size/S Small PR (11-50 lines)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant