From d01149ef1f674625555b524d7a16e442883e8197 Mon Sep 17 00:00:00 2001 From: Michael Welles Date: Sat, 24 Jan 2026 20:16:17 -0500 Subject: [PATCH] fix(ci): update trunk go runtime to match go.mod version The Go version in go.mod was updated to 1.25.6 in commit 5bc29255a, but the trunk runtime was not updated. This caused golangci-lint to fail with "the Go language version (go1.24) used to build golangci-lint is lower than the targeted Go version (1.25.6)". --- .trunk/trunk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.trunk/trunk.yaml b/.trunk/trunk.yaml index 9452cac5cf4..b122b503c3e 100644 --- a/.trunk/trunk.yaml +++ b/.trunk/trunk.yaml @@ -14,7 +14,7 @@ plugins: # Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes) runtimes: enabled: - - go@1.24.3 + - go@1.25.6 - node@22.16.0 - python@3.10.8