Skip to content

Commit 06836ec

Browse files
briandorseyiennaegemini-code-assist[bot]
authored
chore: bump supported Go versions from (1.23, 1.24) to (1.24, 1.25) (#5384)
* chore: update Dockerfiles to Go 1.24 (new min) * chore: update go.work, go.mod files to Go 1.24 * chore: go vet fix: non-constant format string * fix: Update storagetransfer/storagetransfer_test.go * fix: indentation from Code Assist patches * chore: update kokoro, build, GAE configs to Go 1.24 --------- Co-authored-by: Jennifer Davis <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 1420c71 commit 06836ec

File tree

216 files changed

+294
-224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+294
-224
lines changed

aiplatform/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/golang-samples/aiplatform
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
cloud.google.com/go/aiplatform v1.70.0

appengine/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/golang-samples/appengine
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
cloud.google.com/go/cloudtasks v1.13.3

appengine/go11x/cloudsql/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/appengine/go11x/cloudsql
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require github.com/go-sql-driver/mysql v1.8.1
66

appengine/go11x/helloworld/app.yaml

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

15-
runtime: go123
15+
runtime: go124

appengine/go11x/helloworld/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/GoogleCloudPlatform/appengine/go11x/helloworld
22

3-
go 1.23.0
3+
go 1.24.0

appengine/go11x/tasks/handle_task/Dockerfile

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
1+
# Copyright 2019 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# https://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
# Use the offical Go image to create a build artifact.
216
# This is based on Debian and sets the GOPATH to /go.
317
# https://hub.docker.com/_/golang
4-
FROM golang:1.23 as builder
18+
FROM golang:1.24 as builder
519

620
# Copy local code to the container image.
721
RUN mkdir /app
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/GoogleCloudPlatform/appengine/go11x/tasks/handle_task
22

3-
go 1.23.0
3+
go 1.24.0

appengine/go11x/warmup/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/appengine/go11x/warmup
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require cloud.google.com/go/storage v1.50.0
66

appengine_flexible/analytics/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/appengine_flexible/analytics
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/gofrs/uuid v4.4.0+incompatible

appengine_flexible/datastore/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/appengine_flexible/datastore
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
cloud.google.com/go/datastore v1.20.0

0 commit comments

Comments
 (0)