Skip to content

Commit ecf2f0e

Browse files
committed
chore (deps) : bump go version to v1.25.8
Signed-off-by: Rohan Kumar <rohaan@redhat.com>
1 parent 68ce90d commit ecf2f0e

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.ci/oci.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@
1515

1616
FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.24-openshift-4.20
1717

18-
ENV GO_VERSION=1.25.7
18+
ENV GO_VERSION=1.25.8
1919
ENV GOROOT=/usr/local/go
2020
ENV PATH=$GOROOT/bin:$PATH
2121

22-
ENV GO_VERSION=1.25.7
22+
ENV GO_VERSION=1.25.8
2323
ENV GOROOT=/usr/local/go
2424
ENV PATH=$GOROOT/bin:$PATH
2525

2626
SHELL ["/bin/bash", "-c"]
2727

28-
# Install Go 1.25.7 to satisfy go.mod toolchain requirement (go 1.25.0)
28+
# Install Go 1.25.8 to satisfy go.mod toolchain requirement (go 1.25.0)
2929
RUN export ARCH="$(uname -m)" && if [[ ${ARCH} == "x86_64" ]]; then export ARCH="amd64"; elif [[ ${ARCH} == "aarch64" ]]; then export ARCH="arm64"; fi && \
3030
curl -fsSL "https://go.dev/dl/go${GO_VERSION}.linux-${ARCH}.tar.gz" -o go.tar.gz && \
3131
rm -rf /usr/local/go && \

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Set up Go 1.x
1515
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
1616
with:
17-
go-version: 1.25.7
17+
go-version: 1.25.8
1818
-
1919
name: Set up Python 3.11
2020
uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa # v4.8.0

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Set up Go 1.x
1616
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
1717
with:
18-
go-version: 1.25.7
18+
go-version: 1.25.8
1919
-
2020
name: Set up Python 3.11
2121
uses: actions/setup-python@b64ffcaf5b410884ad320a9cfac8866006a109aa # v4.8.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Set up Go 1.x
3333
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
3434
with:
35-
go-version: 1.25.7
35+
go-version: 1.25.8
3636
- name: Set up QEMU
3737
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 #v2.2.0
3838

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
1717
# Use BUILDPLATFORM to ensure the builder always runs natively on the host machine
1818
# Image pinned by SHA256 to address GitHub security bot warnings about unpinned dependencies
19-
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1771417345@sha256:799cc027d5ad58cdc156b65286eb6389993ec14c496cf748c09834b7251e78dc AS builder
19+
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1775634114@sha256:a18f52a96ff45b5ff3ef3656df69a19b44d012e7a53643e998fc121528e7a460 AS builder
2020

2121
# Accept TARGETARCH and TARGETPLATFORM, which are automatically passed by the builder
2222
ARG TARGETARCH

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/devfile/devworkspace-operator
22

33
go 1.25.0
44

5-
toolchain go1.25.7
5+
toolchain go1.25.8
66

77
require (
88
github.com/devfile/api/v2 v2.3.1-alpha.0.20250521155908-5c3d7b99d252

project-clone/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Build the manager binary
1717
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
1818
# Image pinned by SHA256 to address GitHub security bot warnings about unpinned dependencies
19-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1771417345@sha256:799cc027d5ad58cdc156b65286eb6389993ec14c496cf748c09834b7251e78dc as builder
19+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.8-1775634114@sha256:a18f52a96ff45b5ff3ef3656df69a19b44d012e7a53643e998fc121528e7a460 as builder
2020
ARG TARGETARCH
2121
ARG TARGETOS
2222
ENV GOPATH=/go/

0 commit comments

Comments
 (0)