From 6dceaa1c851b8a6a91a8968435d96f3cf96da70f Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Thu, 22 Jan 2026 16:43:23 +0300 Subject: [PATCH 1/2] fix(security): remediate CVE vulnerabilities - Update Go version to 1.24.11 (fixes CVE-2025-61723, CVE-2025-61725, CVE-2025-61729, CVE-2025-58187, CVE-2025-58188, CVE-2025-58185, CVE-2025-47912, CVE-2025-58186, CVE-2025-61724, CVE-2025-58189, CVE-2025-58183, CVE-2025-61727) 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 474aa83..96d7008 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/upbound/function-claude -go 1.24.4 +go 1.24.11 require ( github.com/alecthomas/kong v0.9.0 From 8350ecf2596ae8fb3f6646e24e337567b72d7dd6 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Thu, 22 Jan 2026 16:49:26 +0300 Subject: [PATCH 2/2] fix(ci): resolve build failures - Update GO_VERSION from 1.24.4 to 1.24.11 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 25444c0..4d7e7de 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: env: # Common versions - GO_VERSION: '1.24.4' + GO_VERSION: '1.24.11' GOLANGCI_VERSION: 'v1.64.2' DOCKER_BUILDX_VERSION: 'v0.24.0'