Skip to content

build(deps): Bump actions/setup-node from 4 to 6#4

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

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

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 2, 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 @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 2, 2026

Labels

The following labels could not be found: ci, 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.

@trentas
Copy link
Copy Markdown
Contributor

trentas commented May 2, 2026

@dependabot rebase

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 065a1c1 to 0bb8087 Compare May 2, 2026 02:26
@vercel
Copy link
Copy Markdown

vercel Bot commented May 2, 2026

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

Project Deployment Actions Updated (UTC)
clickbus-iris Ready Ready Preview, Comment May 2, 2026 2:26am

Request Review

trentas added a commit that referenced this pull request May 2, 2026
Applies the bumps from PRs #2 (checkout v4→v6), #3 (upload-artifact v4→v7), and #4 (setup-node v4→v6) directly. Dependabot can't merge those PRs because the gh CLI lacks 'workflow' scope; bypassing via direct edit.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@trentas
Copy link
Copy Markdown
Contributor

trentas commented May 2, 2026

Superseded by direct edit in main (commit applies the same bump). Closing to keep PR queue clean.

@trentas trentas closed this May 2, 2026
@trentas trentas deleted the dependabot/github_actions/actions/setup-node-6 branch May 2, 2026 02:30
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github May 2, 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.

trentas added a commit that referenced this pull request May 13, 2026
…ot absent

Re-probed the DORA endpoints with POST (not GET). POST returns 401
Unauthorized for unauthenticated requests, meaning the endpoints exist
and are real read endpoints — Datadog just uses POST-with-body to carry
the filter object instead of URL query params (a known non-REST pattern
for complex list filters).

Previous §8 incorrectly concluded the DORA API was write-only based on
GET 404s. That was wrong — GET on those paths 404s because there's no
GET handler, not because the resource doesn't exist.

Walks back the §8 revision:

- The original §1 "DORA Metrics API v2 (read endpoints)" was
  directionally correct. Replace the §8 body with: list = POST with
  body, single record = GET /{id}.
- The 4 endpoints documented in detail (with field list: service,
  team, env, version, repository_id, change_failure, recovery_time,
  avg_change_lead_time, lead-time stages).
- Drop decision #6 (A/B/C) — no longer applicable; we go raw events.
- §1, §3 schemas, §4 PR breakdown, §7 decision #4: unchanged.
- New caveat captured: DORA event retention is 2 years; backfill must
  cap at 24 months.

Validation status: 401 confirms endpoints exist; happy-path response
shape still needs working keys before slice 3.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
trentas added a commit that referenced this pull request May 13, 2026
…oach proposed (#38)

* docs(integrations): revise PLAN — DORA API is write-only, switch to Metrics + Events + Incidents

Empirical probe against Datadog US1 (after slice 1 landed but before
slice 2 started) showed every DORA read endpoint candidate returns 404:
/api/v2/dora/deployment, /deployments, /incident, /incidents, /failure,
/failures, /metrics. Datadog's DORA API is POST-only — callers submit
events to populate the DORA dashboard; there is no GET surface for
reading raw events.

Original §1 picked "DORA Metrics API v2 (read endpoints)" as the data
source. That was wrong.

Adds §8 to PLAN-datadog.md documenting:

- What probes were run and what Datadog returned
- What surfaces actually exist for reading: Metrics API (`dora.*`
  time-series), Events API (deployments via integration), Incidents API
  (with Datadog Incident Management)
- Three revised options (A: aggregates only, B: raw events, C: hybrid)
  with explicit tradeoffs
- Recommended path: hybrid, surfacing per-source availability as a
  checklist on the connect detail page
- Concrete impact on slices 2-5 (slice 1 unaffected)
- New decision #6 added to §7 (surface preference)
- Why none of §8 is endpoint-validated: dev keys didn't authenticate;
  the 404s are enough evidence the DORA reads don't exist, but the
  positive claims about Metrics / Events / Incidents need working keys
  before slice 3 starts

Slice 1 (already on main) ships independent of all of this. Slice 2
now waits on user decision #6 and on a fresh key pair that
authenticates.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* docs(integrations): correct §8 — list endpoints are POST-with-body, not absent

Re-probed the DORA endpoints with POST (not GET). POST returns 401
Unauthorized for unauthenticated requests, meaning the endpoints exist
and are real read endpoints — Datadog just uses POST-with-body to carry
the filter object instead of URL query params (a known non-REST pattern
for complex list filters).

Previous §8 incorrectly concluded the DORA API was write-only based on
GET 404s. That was wrong — GET on those paths 404s because there's no
GET handler, not because the resource doesn't exist.

Walks back the §8 revision:

- The original §1 "DORA Metrics API v2 (read endpoints)" was
  directionally correct. Replace the §8 body with: list = POST with
  body, single record = GET /{id}.
- The 4 endpoints documented in detail (with field list: service,
  team, env, version, repository_id, change_failure, recovery_time,
  avg_change_lead_time, lead-time stages).
- Drop decision #6 (A/B/C) — no longer applicable; we go raw events.
- §1, §3 schemas, §4 PR breakdown, §7 decision #4: unchanged.
- New caveat captured: DORA event retention is 2 years; backfill must
  cap at 24 months.

Validation status: 401 confirms endpoints exist; happy-path response
shape still needs working keys before slice 3.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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