Skip to content

Commit cc37c43

Browse files
authored
Merge pull request #178 from sters/update-go-version
update Go version to 1.24 in CircleCI config and Go modules
2 parents e80be7f + 3e9ab4b commit cc37c43

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
jobs:
44
test:
55
docker:
6-
- image: golang:1.23-bullseye
6+
- image: golang:1.24-bullseye
77
environment:
88
SPANNER_EMULATOR_HOST: localhost:9010
99
SPANNER_EMULATOR_HOST_REST: localhost:9020
@@ -55,7 +55,7 @@ jobs:
5555
5656
v2test:
5757
docker:
58-
- image: golang:1.23-bullseye
58+
- image: golang:1.24-bullseye
5959
environment:
6060
SPANNER_EMULATOR_HOST: localhost:9010
6161
SPANNER_EMULATOR_HOST_REST: localhost:9020
@@ -100,7 +100,7 @@ jobs:
100100
make -C v2 check-diff
101101
check_lint:
102102
docker:
103-
- image: golang:1.23-bullseye
103+
- image: golang:1.24-bullseye
104104
working_directory: /go/src/github.com/cloudspannerecosystem/yo
105105
steps:
106106
- checkout
@@ -110,7 +110,7 @@ jobs:
110110
make check_lint
111111
check_go_mod:
112112
docker:
113-
- image: golang:1.23-bullseye
113+
- image: golang:1.24-bullseye
114114
working_directory: /go/src/github.com/cloudspannerecosystem/yo
115115
steps:
116116
- checkout

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v3
14-
- name: Set up Go 1.23
14+
- name: Set up Go 1.24
1515
uses: actions/setup-go@v3
1616
with:
17-
go-version: 1.23.x
17+
go-version: 1.24.x
1818
- name: Run GoReleaser
1919
uses: goreleaser/goreleaser-action@v2
2020
with:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module go.mercari.io/yo
22

3-
go 1.23.0
3+
go 1.24.0
44

5-
toolchain go1.23.5
5+
toolchain go1.24.5
66

77
require (
88
cloud.google.com/go v0.118.3

v2/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.mercari.io/yo/v2
22

3-
go 1.23.0
3+
go 1.24.0
44

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

0 commit comments

Comments
 (0)