Skip to content

build(deps): bump actions/deploy-pages from 4 to 5 - #3

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/deploy-pages-5
Open

build(deps): bump actions/deploy-pages from 4 to 5#3
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/deploy-pages-5

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps actions/deploy-pages from 4 to 5.

Release notes

Sourced from actions/deploy-pages's releases.

v5.0.0

Changelog


See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

v4.0.5

Changelog


See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

v4.0.4

Changelog


See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

v4.0.3

Changelog

... (truncated)

Commits
  • cd2ce8f Merge pull request #404 from salmanmkc/node24
  • bbe2a95 Update Node.js version to 24.x
  • 854d7aa Merge pull request #374 from actions/Jcambass-patch-1
  • 306bb81 Add workflow file for publishing releases to immutable action package
  • b742728 Merge pull request #360 from actions/dependabot/npm_and_yarn/npm_and_yarn-513...
  • 7273294 Bump braces in the npm_and_yarn group across 1 directory
  • 963791f Merge pull request #361 from actions/dependabot-friendly
  • 51bb29d Make the rebuild dist workflow safer for Dependabot
  • 89f3d10 Merge pull request #358 from actions/dependabot/npm_and_yarn/non-breaking-cha...
  • bce7355 Merge branch 'main' into dependabot/npm_and_yarn/non-breaking-changes-99c12deb21
  • 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/deploy-pages](https://github.com/actions/deploy-pages) from 4 to 5.
- [Release notes](https://github.com/actions/deploy-pages/releases)
- [Commits](actions/deploy-pages@v4...v5)

---
updated-dependencies:
- dependency-name: actions/deploy-pages
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

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 13, 2026
ruvnet added a commit that referenced this pull request Aug 13, 2026
- LEDGER.md: remove the fake future-dated demo seed rows (#3-#18, 2026-08-14..19)
  that were never real GitHub state; keep only the real 2026-08-13 night. The
  nightly correctly flagged these as unverifiable (issue #6).
- dream.config.json: drop the broken evaluator entrypoints the nightly proved
  don't work — 'npx @metaharness/redblue' (silent no-op via the bin-symlink
  isMain footgun) and 'npx @metaharness/flywheel' (no bin field); keep the
  working 'npm test' and correct darwin to 'npx @metaharness/darwin evolve'.

Merges main (v0.1.x packaging, 4D site, GHA dream) into the PR branch. 96 tests green.

Co-Authored-By: claude-flow <ruv@ruv.net>
ruvnet added a commit that referenced this pull request Aug 13, 2026
… silent no-op) (#7)

* security-adversarial: classify evaluator entrypoint liveness (redblue silent no-op)

Reproduced a real, 100%-reliable silent failure in this repo's own SCAN=redblue
evaluator entrypoint (dream.config.json): `npx @metaharness/redblue <anything>`
exits 0 with zero bytes on both stdout and stderr, for every subcommand tried.
Root cause: the package's CLI guards its dispatch with the classic
`import.meta.url === file://${process.argv[1]}` idiom, which fails once the
executable is reached through the symlink npm/npx create for a package's bin
entry, so the dispatch body never runs. Exit 0 + silence is indistinguishable
from "ran clean, zero findings" to anything that only checks the exit code.

Adds classifyEntrypointResult (packages/cli/src/entrypoint.ts) and a
`dream-machine verify-entrypoint` CLI command so this pipeline can separate
live / blocked / suspicious-silent before ever recording EVALUATED=yes.

Includes two fixes from an independent adversarial critique of this diff:
unquoted multi-word --cmd used to silently truncate and produce a false
"live" verdict (fixed with a hard usage-error guard); child_process.exec's
error.code can be a non-number on maxBuffer overflow (fixed with explicit
buffer size + defensive coercion).

npm test: 85 -> 96 (all new, 0 removed/modified). ADR-0002 documents the
entrypoint-trust convention. Full evidence in
docs/dream-cycle/2026-08-13-security-adversarial-report.md.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01UAJ2FdMooTevrJ34FW3mpr

* docs(dream-cycle): append 2026-08-13 security-adversarial ledger row

ACCEPT — redblue evaluator entrypoint liveness classifier. Issue #6, PR #7.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01UAJ2FdMooTevrJ34FW3mpr

* fix(dream-cycle): resolve the two issues the nightly surfaced

- LEDGER.md: remove the fake future-dated demo seed rows (#3-#18, 2026-08-14..19)
  that were never real GitHub state; keep only the real 2026-08-13 night. The
  nightly correctly flagged these as unverifiable (issue #6).
- dream.config.json: drop the broken evaluator entrypoints the nightly proved
  don't work — 'npx @metaharness/redblue' (silent no-op via the bin-symlink
  isMain footgun) and 'npx @metaharness/flywheel' (no bin field); keep the
  working 'npm test' and correct darwin to 'npx @metaharness/darwin evolve'.

Merges main (v0.1.x packaging, 4D site, GHA dream) into the PR branch. 96 tests green.

Co-Authored-By: claude-flow <ruv@ruv.net>

---------

Co-authored-by: Claude <noreply@anthropic.com>
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.

0 participants