From 8b5c2c5e233f0382310ee1aa33a0776372ae11c9 Mon Sep 17 00:00:00 2001 From: Calin Teodor Date: Mon, 13 Jul 2026 12:56:53 +0300 Subject: [PATCH 1/2] ci: track go toolchain from go.mod (cascade bumps raise the directive) Co-Authored-By: Claude Fable 5 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08a7d06..5809894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/setup-go@v6 with: - go-version: '1.25' + go-version-file: eventstream/go.mod cache: true cache-dependency-path: eventstream/go.sum From bea608127364db89ea293a6b44e5074c6cd8093b Mon Sep 17 00:00:00 2001 From: Calin Teodor Date: Mon, 13 Jul 2026 12:57:02 +0300 Subject: [PATCH 2/2] go.mod: bump go directive to 1.25.12 (GO-2026-5856) Co-Authored-By: Claude Fable 5 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 73d73eb..1ba3f5a 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/pilot-protocol/eventstream -go 1.25.11 +go 1.25.12 require github.com/pilot-protocol/common v0.5.7