Skip to content

Commit 335127f

Browse files
* fix: Upgrade go version
PiperOrigin-RevId: 897275690
1 parent 3ea1948 commit 335127f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

custom-targets/git-ops/git-deployer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
ARG GCLOUD_VERSION=456.0.0
16-
ARG GO_VERSION=1.24
16+
ARG GO_VERSION=1.25
1717

1818
FROM golang:${GO_VERSION} AS go-build
1919
ARG COMMIT_SHA=unknown

custom-targets/helm/helm-deployer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
ARG GCLOUD_VERSION=456.0.0
16-
ARG GO_VERSION=1.24
16+
ARG GO_VERSION=1.25
1717
ARG HELM_VERSION=3.13.2
1818

1919
FROM golang:${GO_VERSION} AS go-build

custom-targets/terraform/terraform-deployer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG GO_VERSION=1.24
15+
ARG GO_VERSION=1.25
1616
ARG TERRAFORM_VERSION=1.2.3
1717

1818
FROM golang:${GO_VERSION} AS go-build

custom-targets/vertex-ai-pipeline/pipeline-deployer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG GO_VERSION=1.24
15+
ARG GO_VERSION=1.25
1616

1717
FROM golang:${GO_VERSION} AS go-build
1818
ARG COMMIT_SHA=unknown

custom-targets/vertex-ai/model-deployer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
ARG GO_VERSION=1.24
15+
ARG GO_VERSION=1.25
1616

1717
FROM golang:${GO_VERSION} AS go-build
1818
ARG COMMIT_SHA=unknown

go.mod

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

3-
go 1.24.4
3+
go 1.25.9
44

55
require (
66
cloud.google.com/go/config v1.4.0

postdeploy-hooks/k8s-cleanup/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
ARG GCLOUD_VERSION=506.0.0
15-
ARG GO_VERSION=1.24
15+
ARG GO_VERSION=1.25
1616

1717
FROM golang:${GO_VERSION} AS build
1818
WORKDIR /cleanup

verify-evaluate-cloud-metrics/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.24 AS build
15+
FROM golang:1.25 AS build
1616
WORKDIR /verify
1717
COPY go.mod go.sum ./
1818
COPY verify-evaluate-cloud-metrics/*.go ./verify-evaluate-cloud-metrics/

0 commit comments

Comments
 (0)