Skip to content

Commit 11f07ff

Browse files
[Vulnerability] Upgrade go version (#1298)
* initial changes * remaining files
1 parent 763f6fc commit 11f07ff

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/integration-tests-against-emulator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ jobs:
173173
174174
- uses: actions/setup-go@v2
175175
with:
176-
go-version: "1.24"
176+
go-version: "1.25.8"
177177
- run: go version
178178
- run: go build
179179
- run: go test -v ./...

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v3
2626
- uses: actions/setup-go@v2
2727
with:
28-
go-version: "1.24.3"
28+
go-version: "1.25.8"
2929
- name: Set up Node.js
3030
uses: actions/setup-node@v2
3131
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# This stage builds the Spanner migration tool binary using its source code.
2121

2222
# Add golang as the base image for the build stage.
23-
FROM golang:1.24.3 AS build
23+
FROM golang:1.25.8 AS build
2424

2525
# Set the default work directory as “/spanner_migration_tool_bin” in the container.
2626
WORKDIR /spanner_migration_tool_bin

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Detailed instructions on how to install a new component in gCloud can be found [
9191
Building from source is only supported for MacOS and Linux based platforms.
9292

9393
1. Install Go ([download](https://golang.org/doc/install)) on your development machine if it is not already installed, configure the [GOPATH](https://pkg.go.dev/cmd/go@master#hdr-GOPATH_environment_variable) environment variable if it is not already configured, and [test your installation](https://golang.org/doc/install#testing). <br/>
94-
Required go version: 1.24.0+
94+
Required go version: 1.25.0+
9595
2. Install nodejs ([download](https://nodejs.org/en/download)). <br/>
9696
Required node version: v18.20.6+
9797
3. Install angular-cli ([instructions](https://angular.dev/tools/cli/setup-local#install-the-angular-cli))

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/spanner-migration-tool
22

3-
go 1.24.11
3+
go 1.25.8
44

55
require (
66
cloud.google.com/go v0.121.0

sources/cassandra/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# --- Go Builder Stage ---
2-
FROM golang:1.24-bullseye AS go-builder
2+
FROM golang:1.25-bullseye AS go-builder
33

44
# Disable cgo to remove gcc dependency
55
ENV CGO_ENABLED=0

0 commit comments

Comments
 (0)