From 01da39d3d46e2078d763e7e33f92255b864cd5f1 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Thu, 5 Feb 2026 21:26:28 +0300 Subject: [PATCH 1/2] fix(security): remediate CVE vulnerabilities - Update Go version to 1.24.12 (fixes CVE-2025-61726, CVE-2025-61728, CVE-2025-61730, CVE-2025-61731) Signed-off-by: Alper Rifat Ulucinar --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 96d7008..6f5f489 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/upbound/function-claude -go 1.24.11 +go 1.24.12 require ( github.com/alecthomas/kong v0.9.0 From fd0f00acf8bfe01476a00c167ce73626c61c1d68 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Thu, 5 Feb 2026 21:32:22 +0300 Subject: [PATCH 2/2] fix(ci): resolve build failures - Update GO_VERSION from 1.24.11 to 1.24.12 to match go.mod requirement Signed-off-by: Alper Rifat Ulucinar --- .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 4d7e7de..15df403 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: env: # Common versions - GO_VERSION: '1.24.11' + GO_VERSION: '1.24.12' GOLANGCI_VERSION: 'v1.64.2' DOCKER_BUILDX_VERSION: 'v0.24.0'