Skip to content

ci: Bump DavidAnson/markdownlint-cli2-action from 24.0.0 to 24.1.0 - #9

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependabot/github_actions/DavidAnson/markdownlint-cli2-action-24.1.0
Jul 23, 2026
Merged

ci: Bump DavidAnson/markdownlint-cli2-action from 24.0.0 to 24.1.0#9
github-actions[bot] merged 1 commit into
mainfrom
dependabot/github_actions/DavidAnson/markdownlint-cli2-action-24.1.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps DavidAnson/markdownlint-cli2-action from 24.0.0 to 24.1.0.

Commits
  • 6bf21b0 Update to version 24.1.0.
  • 448a576 Freshen generated package-lock.json file.
  • afdb70c Freshen generated index.js file.
  • 63ea5b7 Bump markdownlint-cli2 from 0.23.0 to 0.23.1
  • 2eb1971 Bump eslint-plugin-unicorn from 71.0.0 to 71.1.0
  • 0f39a4a Bump eslint-plugin-unicorn from 70.0.0 to 71.0.0
  • 2e90eb9 Bump eslint-plugin-unicorn from 69.0.0 to 70.0.0
  • a93ecb8 Bump @​vercel/ncc from 0.44.0 to 0.44.1
  • ac0dd39 Bump eslint from 10.5.0 to 10.6.0
  • 61ae346 Bump eslint-plugin-n from 18.1.0 to 18.2.1
  • 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 [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 24.0.0 to 24.1.0.
- [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases)
- [Commits](DavidAnson/markdownlint-cli2-action@8de2aa0...6bf21b0)

---
updated-dependencies:
- dependency-name: DavidAnson/markdownlint-cli2-action
  dependency-version: 24.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

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 Jul 23, 2026
@github-actions
github-actions Bot enabled auto-merge (squash) July 23, 2026 12:06
@github-actions
github-actions Bot merged commit 7485fb3 into main Jul 23, 2026
10 checks passed
@dependabot
dependabot Bot deleted the dependabot/github_actions/DavidAnson/markdownlint-cli2-action-24.1.0 branch July 23, 2026 12:08
HetCreep added a commit that referenced this pull request Aug 8, 2026
…under an agent dir

Per-project .coalface.json now lives under an agent dir, never bare at
the project root. Owner-designated shape (2026-08-08), the read order
is a RAIL identical across the whole series:

1. <project>/.<the running agent's own dir>/coal/coalface.json -- the
   dir of the agent ACTUALLY EXECUTING. CoalFace is the first room in
   this campaign wired to more than one agent (hooks/coalface-conductor.js
   for Claude Code, hooks/ag-conductor.js for Antigravity), so this is
   a real branch here, not a hypothetical: own dir is 'claude' from the
   CC hook's own main(), 'agents' from the AG adapter -- both pass it
   explicitly into the now-shared readCfg(ownAgentDir).
2. other known agent dirs, fixed order .claude -> .agents -> .gemini
   (first found wins; own dir deduped out so it's never checked twice)
3. LEGACY: <project>/.coalface.json at the project root (the
   pre-2026-08-08 shape) -- still read normally, no breakage

findProjectCfg() keeps its existing per-level walk-up-from-cwd shape
(stop at home, Phoenix #10/CoalBoard v1.5.1) and now checks the full
candidate list AT EACH LEVEL before moving to the parent, so a
new-shape config one level down still wins over a legacy config
further up -- same nearest-wins behavior as before the migration.

Write side: no project-config writer exists anywhere in this codebase
(no configure.mjs, no consent-persistence code) -- confirmed by a
grep-proof N/A test, not just asserted in prose.

Scratch state (#39 half): the update-check stamp moves from
~/.claude/.coalface-update-check to ~/.claude/coal/coalface/update-check,
read-new-fallback-old (a pre-migration stamp's throttle window still
holds) / write-new-drop-old (every write lands only at the new path;
an old-shape file found on a due check is removed in the same
operation -- no-old-version-leftover, never on a read-only path per
Phoenix #5/no-side-effects).

The safer-value-wins clamp (hooks-safety.md #9) is untouched by design
-- only the file's ADDRESS moved. Proven, not assumed: case 38 attempts
an escalation through a NEW own-dir candidate path and confirms the
clamp still holds the explicit global floor.

Global config (~/.claude/.coalface.json) is UNCHANGED -- out of this
room's #69+#39 scope per the design doc's own checklist item 3, which
names only the update-check stamp; matches CoalBoard's precedent in
the same campaign.

+7 tests (32->39 in hooks.test.mjs, 50->57 overall): 3 read-order
precedence (own-dir wins over the fixed order · fixed order used when
own-dir absent · legacy fallback when no new-shape candidate exists
anywhere), 2 stamp-migration (read-new-fallback-old · write-new-drop-old),
1 clamp-unchanged, 1 write-side grep-proof N/A. The own-dir-precedence
and write-new-drop-old cases mutation-tested red-first against the
exact behavior each claims (own-dir-first removed -> only case 33
fails; drop-old removed -> only case 37 fails) before being trusted.

Docs (README/PRIVACY/SECURITY/SKILL.md/CONTRIBUTING) not yet updated --
separate DOCS station commit follows. No version bump here (dist DOES
change, but SemVer sizing is the RELEASE station's job per this
campaign's own checklist item 7 and CoalBoard's shipped precedent in
the same batch).

Co-Authored-By: Claude Sonnet 5 <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.

1 participant