Skip to content

Commit db4ee06

Browse files
Merge pull request #1809 from splunk/cspl-4153-update-dependencies
CSPL-4153: Update dependencies to fix security vulnerabilities
2 parents 1ea27b0 + e522e6f commit db4ee06

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OPERATOR_SDK_VERSION=v1.42.0
22
REVIEWERS=vivekr-splunk,rlieberman-splunk,patrykw-splunk,Igor-splunk,kasiakoziol,kubabuczak,gabrielm-splunk,minjieqiu,qingw-splunk
3-
GO_VERSION=1.25.7
3+
GO_VERSION=1.25.8
44
AWSCLI_URL=https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.8.6.zip
55
KUBECTL_VERSION=v1.29.1
66
AZ_CLI_VERSION=2.79.0

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
ARG PLATFORMS=linux/amd64,linux/arm64
33

44
ARG BASE_IMAGE=registry.access.redhat.com/ubi8/ubi-minimal
5-
ARG BASE_IMAGE_VERSION=8.10-1770223153
5+
ARG BASE_IMAGE_VERSION=8.10-1775152441
66

77
# Build the manager binary
8-
FROM golang:1.25.7 AS builder
8+
FROM golang:1.25.8 AS builder
99

1010
WORKDIR /workspace
1111

@@ -63,6 +63,7 @@ RUN if grep -q 'Ubuntu' /etc/os-release; then \
6363
microdnf update -y libstdc++ && \
6464
microdnf update -y libxml2 && \
6565
microdnf update -y libgcc && \
66+
microdnf update -y gnutls && \
6667
microdnf clean all; \
6768
fi
6869

Dockerfile.distroless

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 golang:1.25.7 AS builder
2+
FROM golang:1.25.8 AS builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,12 @@ docker-push: ## Push docker image with the manager.
170170
# Defaults:
171171
# Build Platform: linux/amd64,linux/arm64
172172
# Build Base OS: registry.access.redhat.com/ubi8/ubi-minimal
173-
# Build Base OS Version: 8.10-1770223153
173+
# Build Base OS Version: 8.10-1775152441
174174
# Pass only what is required, the rest will be defaulted
175175
# Setup defaults for build arguments
176176
PLATFORMS ?= linux/amd64,linux/arm64
177177
BASE_IMAGE ?= registry.access.redhat.com/ubi8/ubi-minimal
178-
BASE_IMAGE_VERSION ?= 8.10-1770223153
178+
BASE_IMAGE_VERSION ?= 8.10-1775152441
179179

180180
docker-buildx:
181181
@if [ -z "${IMG}" ]; then \

go.mod

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

3-
go 1.25.7
3+
go 1.25.8
44

55
require (
66
cloud.google.com/go/storage v1.36.0

0 commit comments

Comments
 (0)