Skip to content

Commit ee1161b

Browse files
authored
fix(security): remediate CVE vulnerabilities (#200)
* fix(security): remediate CVE vulnerabilities - Update Go version to 1.25.10 (fixes CVE-2026-39820, CVE-2026-42499, CVE-2026-39836, CVE-2026-33814, CVE-2026-33811, CVE-2026-42501, CVE-2026-39817, CVE-2026-39826, CVE-2026-39825, CVE-2026-39823, CVE-2026-39819) - Update GO_VERSION in CI workflow to match Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com> * fix(ci): update Crossplane CLI to stable channel The 'current' version is no longer available on the 'master' channel. Update to use the 'stable' channel with 'stable' version to get the latest stable Crossplane CLI release. Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com> * fix(ci): use empty XP_VERSION for latest stable The value 'stable' is not a valid version. Use an empty string to get the latest version from the stable channel. Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com> --------- Signed-off-by: Alper Rifat Ulucinar <ulucinar@users.noreply.github.com>
1 parent 72d5fe4 commit ee1161b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ on:
1414

1515
env:
1616
# Common versions
17-
GO_VERSION: '1.25.9'
17+
GO_VERSION: '1.25.10'
1818
GOLANGCI_VERSION: 'v2.11.3'
1919
DOCKER_BUILDX_VERSION: 'v0.23.0'
2020

2121
# These environment variables are important to the Crossplane CLI install.sh
2222
# script. They determine what version it installs.
23-
XP_CHANNEL: master # TODO(negz): Pin to stable once v1.14 is released.
24-
XP_VERSION: current # TODO(negz): Pin to a version once v1.14 is released.
23+
XP_CHANNEL: stable
24+
XP_VERSION: ''
2525

2626
# This CI job will automatically push new builds to xpkg.upbound.io if the
2727
# XPKG_ACCESS_ID and XPKG_TOKEN secrets are set in the GitHub respository (or

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/crossplane/function-auto-ready
22

3-
go 1.25.9
3+
go 1.25.10
44

55
require (
66
github.com/alecthomas/kong v1.12.0

0 commit comments

Comments
 (0)