Skip to content

Commit bd772ba

Browse files
authored
fix: update go and toolchain to 1.25.x (#1036)
* fix: update go and toolchain to 1.25.x * update
1 parent b8d7eea commit bd772ba

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,13 @@ jobs:
185185
# specifying bash shell ensures a failure in a piped process isn't lost by using `set -eo pipefail`
186186
shell: bash
187187
run: |
188+
go env -w GOTOOLCHAIN=go1.25.0+auto
188189
go test -v -race -cover -short ./... | tee test_results.txt
189190
- name: Run tests (386)
190191
# 386 archs don't support race detector
191192
if: matrix.goarch == '386'
192193
run: |
194+
go env -w GOTOOLCHAIN=go1.25.0+auto
193195
go test -v -cover -short ./...
194196
- name: Convert test output to XML
195197
if: ${{ (github.event_name == 'schedule' || github.event_name == 'push') && always() && matrix.goarch == '' }}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module cloud.google.com/go/cloudsqlconn
22

33
go 1.24.0
44

5-
toolchain go1.24.2
5+
toolchain go1.25.3
66

77
require (
88
cloud.google.com/go/auth v0.17.0

0 commit comments

Comments
 (0)