Skip to content

Commit 8a608ed

Browse files
committed
chore(deps): bump Go >= 1.24.12 to fix CVE-2025-61726
Bump the Go toolchain from 1.22.9 to 1.24.12 in the feast-operator go.mod and Dockerfile to fix CVE-2025-61726 (memory exhaustion in net/url query parameter parsing, CVSS 7.5). Signed-off-by: Chaitany patel <patelchaitany93@gmail.com> Made-with: Cursor
1 parent a623674 commit 8a608ed

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/operator-e2e-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Set up Go
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.22.9
55+
go-version: 1.24.12
5656

5757
- name: Create KIND cluster
5858
run: |

.github/workflows/operator_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Install Go
1515
uses: actions/setup-go@v5
1616
with:
17-
go-version: 1.22.9
17+
go-version: 1.24.12
1818
- name: Operator tests
1919
run: make -C infra/feast-operator test
2020
- name: After code formatting, check for uncommitted differences

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- name: Install Go
109109
uses: actions/setup-go@v2
110110
with:
111-
go-version: 1.22.9
111+
go-version: 1.24.12
112112
- name: Build & version operator-specific release files
113113
run: make -C infra/feast-operator build-installer bundle
114114

@@ -140,7 +140,7 @@ jobs:
140140
- name: Install Go
141141
uses: actions/setup-go@v2
142142
with:
143-
go-version: 1.22.9
143+
go-version: 1.24.12
144144
- name: Compile Go Test Binaries
145145
run: |
146146
cd infra/feast-operator

infra/feast-operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM registry.access.redhat.com/ubi9/go-toolset:1.22.9 AS builder
2+
FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

infra/feast-operator/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/feast-dev/feast/infra/feast-operator
22

3-
go 1.22.9
3+
go 1.24.12
44

55
require (
66
github.com/onsi/ginkgo/v2 v2.17.2

0 commit comments

Comments
 (0)