Skip to content
Open
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 custom-targets/git-ops/git-deployer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

ARG GCLOUD_VERSION=456.0.0
ARG GO_VERSION=1.24
ARG GO_VERSION=1.25

FROM golang:${GO_VERSION} AS go-build
ARG COMMIT_SHA=unknown
Expand Down
2 changes: 1 addition & 1 deletion custom-targets/helm/helm-deployer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

ARG GCLOUD_VERSION=456.0.0
ARG GO_VERSION=1.24
ARG GO_VERSION=1.25
ARG HELM_VERSION=3.13.2

FROM golang:${GO_VERSION} AS go-build
Expand Down
2 changes: 1 addition & 1 deletion custom-targets/terraform/terraform-deployer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.24
ARG GO_VERSION=1.25
ARG TERRAFORM_VERSION=1.2.3

FROM golang:${GO_VERSION} AS go-build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.24
ARG GO_VERSION=1.25

FROM golang:${GO_VERSION} AS go-build
ARG COMMIT_SHA=unknown
Expand Down
2 changes: 1 addition & 1 deletion custom-targets/vertex-ai/model-deployer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

ARG GO_VERSION=1.24
ARG GO_VERSION=1.25

FROM golang:${GO_VERSION} AS go-build
ARG COMMIT_SHA=unknown
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/GoogleCloudPlatform/cloud-deploy-samples

go 1.24.4
go 1.25.9

require (
cloud.google.com/go/config v1.4.0
Expand Down
2 changes: 1 addition & 1 deletion postdeploy-hooks/k8s-cleanup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
ARG GCLOUD_VERSION=506.0.0
ARG GO_VERSION=1.24
ARG GO_VERSION=1.25

FROM golang:${GO_VERSION} AS build
WORKDIR /cleanup
Expand Down
2 changes: 1 addition & 1 deletion verify-evaluate-cloud-metrics/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.24 AS build
FROM golang:1.25 AS build
WORKDIR /verify
COPY go.mod go.sum ./
COPY verify-evaluate-cloud-metrics/*.go ./verify-evaluate-cloud-metrics/
Expand Down
Loading