From 41a444da54e85869bc8285c871222ce10f0de1c8 Mon Sep 17 00:00:00 2001 From: Alper Rifat Ulucinar Date: Tue, 21 Jul 2026 07:47:58 +0000 Subject: [PATCH] fix(security): remediate CVE vulnerabilities - Update Go version to 1.25.12 (fixes GO-2026-5856, GO-2026-4970) - Update CI workflow Go version to 1.25.12 Signed-off-by: Alper Rifat Ulucinar --- .github/workflows/ci.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95d6485..dc05a40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: env: # Common versions - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' GOLANGCI_VERSION: 'v2.11.4' DOCKER_BUILDX_VERSION: 'v0.24.0' diff --git a/go.mod b/go.mod index 116f3b3..7ac0cbe 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/upbound/function-openai -go 1.25.11 +go 1.25.12 require ( github.com/alecthomas/kong v1.4.0