Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GOLANG_BASE_IMG=golang:1.26.4
ARG GOLANG_BASE_IMG=golang:1.26.5
ARG OPERATOR_CONTROLLER_BASE_IMAGE=registry.access.redhat.com/ubi9/ubi-minimal:9.8

# Build the manager binary
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.build
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ RUN apt-get update -y && \
RUN localedef -i en_US -f UTF-8 en_US.UTF-8

# Install Go
RUN wget https://go.dev/dl/go1.26.4.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.26.4.linux-amd64.tar.gz && \
rm go1.26.4.linux-amd64.tar.gz
RUN wget https://go.dev/dl/go1.26.5.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.26.5.linux-amd64.tar.gz && \
rm go1.26.5.linux-amd64.tar.gz

ENV PATH="/usr/local/go/bin:${PATH}"

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ CONTAINER_DOCKER_SOCKET ?= /var/run/docker.sock
DOCKER_GID := $(shell stat -c '%g' $(HOST_DOCKER_SOCKET))
USER_UID := $(shell id -u)
USER_GID := $(shell id -g)
DOCKER_BUILDER_TAG := v1.6
DOCKER_BUILDER_TAG := v1.7
DOCKER_BUILDER_IMAGE := $(DOCKER_REGISTRY)/gpu-operator-build:$(DOCKER_BUILDER_TAG)
CONTAINER_WORKDIR := /gpu-operator
# In CI environments (e.g. GitHub Actions) there is no TTY, so omit -it flags.
DOCKER_IT_FLAGS := $(if $(CI),,-it)
BUILD_BASE_IMG ?= ubuntu:22.04
DOCKER_CACHE_FROM ?=
DOCKER_CACHE_TO ?=
GOLANG_BASE_IMG ?= golang:1.26.4
GOLANG_BASE_IMG ?= golang:1.26.5
OPERATOR_CONTROLLER_BASE_IMAGE ?= registry.access.redhat.com/ubi9/ubi-minimal:9.8
# Helm binary installed into the build-shell image (Dockerfile.build). Pin the
# version and its published sha256 together; bump both when upgrading.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/ROCm/gpu-operator

go 1.26.4
go 1.26.5

require (
github.com/argoproj/argo-workflows/v4 v4.0.5
Expand Down
Loading