Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
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
  • Loading branch information
patelchaitany committed Apr 9, 2026
commit 42d933c86dd880669555ce3651f0859137aaa96c
2 changes: 1 addition & 1 deletion .github/workflows/operator-e2e-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.9
go-version: 1.24.12

- name: Create KIND cluster
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.9
go-version: 1.24.12
- name: Operator tests
run: make -C infra/feast-operator test
- name: After code formatting, check for uncommitted differences
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.9
go-version: 1.24.12
- name: Build & version operator-specific release files
run: make -C infra/feast-operator build-installer bundle

Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.22.9
go-version: 1.24.12
- name: Compile Go Test Binaries
run: |
cd infra/feast-operator
Expand Down
3 changes: 2 additions & 1 deletion infra/feast-operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Build the manager binary
FROM registry.access.redhat.com/ubi9/go-toolset:1.22.9 AS builder
FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS builder
ARG TARGETOS
ARG TARGETARCH
ENV GOTOOLCHAIN=auto

# Copy the Go Modules manifests
COPY go.mod go.mod
Expand Down
2 changes: 1 addition & 1 deletion infra/feast-operator/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/feast-dev/feast/infra/feast-operator

go 1.22.9
go 1.24.12
Comment thread
patelchaitany marked this conversation as resolved.
Comment thread
patelchaitany marked this conversation as resolved.

require (
github.com/onsi/ginkgo/v2 v2.17.2
Expand Down