File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2222ENV \
2323 GO_DL_URL=https://golang.org/dl \
2424 GOPATH=/root/go
25- ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.25.3 .linux-amd64.tar.gz
26- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.25.3 .linux-arm64.tar.gz
25+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.25.4 .linux-amd64.tar.gz
26+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.25.4 .linux-arm64.tar.gz
2727
2828# Determine the CPU architecture and download the appropriate Go binary
2929# We only build our binaries on x86_64 and aarch64 platforms, so it is not necessary
@@ -32,11 +32,11 @@ RUN \
3232 if [ "$(uname -m)" = x86_64 ]; then \
3333 wget --directory-prefix=${TEMP_DIR} ${GO_BIN_URL_x86_64} --quiet \
3434 && rm -rf /usr/local/go \
35- && tar -C /usr/local -xzf ${TEMP_DIR}/go1.25.3 .linux-amd64.tar.gz; \
35+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.25.4 .linux-amd64.tar.gz; \
3636 elif [ "$(uname -m)" = aarch64 ]; then \
3737 wget --directory-prefix=${TEMP_DIR} ${GO_BIN_URL_aarch64} --quiet \
3838 && rm -rf /usr/local/go \
39- && tar -C /usr/local -xzf ${TEMP_DIR}/go1.25.3 .linux-arm64.tar.gz; \
39+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.25.4 .linux-arm64.tar.gz; \
4040 else \
4141 echo "CPU architecture is not supported." && exit 1; \
4242 fi
Original file line number Diff line number Diff line change 11module github.com/redhat-best-practices-for-k8s/certsuite
22
3- go 1.25.3
3+ go 1.25.4
44
55require (
66 github.com/Masterminds/semver/v3 v3.4.0
You can’t perform that action at this time.
0 commit comments