Skip to content

Commit 9fdac08

Browse files
TeoSlayerclaude
andauthored
cascade: pass CHANGELOG_SECRET so auto-bumps get LLM changelogs (#19)
* cascade: pass CHANGELOG_SECRET so auto-bumps get LLM changelogs Org-wide CHANGELOG_SECRET was never forwarded to the reusable tag-bump workflow, so its auto-changelog step silently skipped on every cascade bump. Matches trustedagents, the one repo already wired. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * go.mod: bump go directive to 1.25.12 (GO-2026-5856 + web4 v1.12.5 sibling constraint) govulncheck flags GO-2026-5856 (crypto/tls, fixed in go1.25.12), and CI runs GOTOOLCHAIN=local with the sibling web4 checkout now requiring go >= 1.25.12 — same bump web4 shipped in v1.12.5. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * ci: track go toolchain from go.mod instead of pinning 1.25 go-version: '1.25' resolves to the runner's cached 1.25.11 while GOTOOLCHAIN=local forbids auto-upgrade, so the go.mod 1.25.12 bump (GO-2026-5856) fails every job. go-version-file keeps CI in lockstep with the module. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * ci: go-version-file must point into the subdir checkout This job checks the repo out at path: libpilot, so go.mod lives at libpilot/go.mod, not the workspace root. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 040c48d commit 9fdac08

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/cascade.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ jobs:
3434
version: ${{ inputs.version || github.event.client_payload.version }}
3535
is_prerelease: ${{ inputs.is_prerelease == true || github.event.client_payload.is_prerelease == true }}
3636
stable_only: true
37+
secrets:
38+
CHANGELOG_SECRET: ${{ secrets.CHANGELOG_SECRET }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116

117117
- uses: actions/setup-go@v6
118118
with:
119-
go-version: '1.25'
119+
go-version-file: libpilot/go.mod
120120
cache: true
121121
cache-dependency-path: libpilot/go.sum
122122

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pilot-protocol/libpilot
22

3-
go 1.25.11
3+
go 1.25.12
44

55
require (
66
github.com/pilot-protocol/common v0.5.5

0 commit comments

Comments
 (0)