From 3d5ca691c9e9bab9f20f6181821be730c15ad4ab Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Mon, 2 Mar 2026 17:39:23 +0300 Subject: [PATCH 1/2] fix(security): remediate CVE vulnerabilities - Update Go version to 1.24.13 (fixes CVE-2025-68121, CVE-2025-61732) 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 6f5f489..aaf4e52 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/upbound/function-claude -go 1.24.12 +go 1.24.13 require ( github.com/alecthomas/kong v0.9.0 From eb9f5b7f7a3d5071f53d2f8f6c44bdc589eadd6f Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Mon, 2 Mar 2026 17:45:45 +0300 Subject: [PATCH 2/2] fix(ci): resolve build failures - Update GO_VERSION from 1.24.12 to 1.24.13 in CI workflow to match go.mod requirements 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 15df403..05e4e77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: env: # Common versions - GO_VERSION: '1.24.12' + GO_VERSION: '1.24.13' GOLANGCI_VERSION: 'v1.64.2' DOCKER_BUILDX_VERSION: 'v0.24.0'