Skip to content

deps: Bump actions/setup-go from 5 to 6#2

Merged
josealekhine merged 1 commit into
mainfrom
dependabot/github_actions/actions/setup-go-6
Jan 27, 2026
Merged

deps: Bump actions/setup-go from 5 to 6#2
josealekhine merged 1 commit into
mainfrom
dependabot/github_actions/actions/setup-go-6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jan 26, 2026

Copy link
Copy Markdown
Contributor

Bumps actions/setup-go from 5 to 6.

Release notes

Sourced from actions/setup-go's releases.

v6.0.0

What's Changed

Breaking Changes

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-go@v5...v6.0.0

v5.6.0

What's Changed

Full Changelog: actions/setup-go@v5...v5.6.0

v5.5.0

What's Changed

Bug fixes:

Dependency updates:

New Contributors

Full Changelog: actions/setup-go@v5...v5.5.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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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-go](https://github.com/actions/setup-go) from 5 to 6.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-version: '6'
  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 Jan 26, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

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

@dependabot dependabot Bot requested a review from josealekhine as a code owner January 26, 2026 04:27
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jan 26, 2026

Copy link
Copy Markdown

Deploying ctx with  Cloudflare Pages  Cloudflare Pages

Latest commit: b7bf090
Status: ✅  Deploy successful!
Preview URL: https://6ad64581.ctx-bhl.pages.dev
Branch Preview URL: https://dependabot-github-actions-ac-w6d4.ctx-bhl.pages.dev

View logs

@josealekhine josealekhine left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM.

@josealekhine josealekhine merged commit af02970 into main Jan 27, 2026
1 of 3 checks passed
@josealekhine josealekhine deleted the dependabot/github_actions/actions/setup-go-6 branch January 27, 2026 17:32
CoderMungan pushed a commit to CoderMungan/ctx that referenced this pull request Jun 19, 2026
…hook (Phase 1a)

Stand up the audit channel sketched in specs/audit-channel.md:
the structural substrate that lets out-of-band auditor sessions
(a separate Claude Code instance, run on the user's plan to
avoid per-commit API cost) drop structured reports into
`.context/audit/<kind>.md`, and that surfaces those reports to
the next in-session interaction via the only discipline channel
in this codebase that empirically survives agent tunnel vision:
verbatim relay.

Phase 1a deliverables:

- `ctx audit` CLI: `list` (default), `show ID`, `dismiss
  [ID...]` or `dismiss --all`. Dismissals are bound to the
  report digest at dismiss time so a fresh audit run with new
  findings re-surfaces the report. Mirrors `ctx remind` shape
  and registers in internal/bootstrap/group.go under the
  sessions group.
- `ctx system check-audit` UserPromptSubmit hook: reads every
  report under `.context/audit/`, skips status:clean and
  dismissed-against-current-digest, renders each remaining
  body inside the standard nudge box (auditRender package),
  and prefixes reports older than [cfgAudit.StalenessAge] (30
  days) with a STALE marker. Uses the same nudge.LoadAndEmit
  machinery as check-reminder.
- Report format: YAML frontmatter (kind/status/commit-range/
  generated-at/generator/digest) + verbatim body. Parsed by
  internal/cli/audit/core/parse with sentinel
  ErrNoFrontmatter / ErrUnterminatedFrontmatter in
  internal/err/audit.
- Persistence: reports at `.context/audit/<id>.md`, dismissal
  ledger at `.context/audit/.dismissed.json` (NOT under
  `.context/state/` — a user nuking state should not silently
  re-surface dismissed audits, per spec Open Question ActiveMemory#2).
- Full i18n plumbing: 8 error keys, 4 writer keys, 7
  check-audit hook keys, plus matching descriptors in
  commands.yaml / examples.yaml / flags.yaml / hooks.yaml /
  registry.yaml.
- Tests: 8 CLI tests (list/show/dismiss happy paths +
  unknown-id + no-ids-no-all + fresh-digest-resurfaces); 4
  parser tests (round-trip + sentinel errors + body
  byte-preservation); 5 hook tests (no-leak invariant +
  silent-on-clean + relays-findings-body + silent-when-
  dismissed + STALE-prefix-on-old-report).

Phase 1b (separate commit, per the User-Facing Surface
Completeness convention added in 77fa01f): the first auditor
skill (/ctx-surface-audit SKILL.md with refuse-on-dirty-tree
guard) + recipe touch-ups. Phase 2 (separate spec / commits):
auto-dismissal on detected resolution, sibling audit skills
(/ctx-spec-trailer-audit, /ctx-capture-audit), and stale-
report graceful escalation.

Bundled as the fourth commit on feat/pad-undo-snapshot because
this work grew directly from the doc-gap fixup in 77fa01f —
the audit channel is the structural fix for the tunnel-vision
failure mode that commit only papered over with a CONVENTIONS
prose rule.

Spec: specs/audit-channel.md
Signed-off-by: Jose Alekhinne <jose@ctx.ist>
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