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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
test:
docker:
- image: golang:1.23-bullseye
- image: golang:1.24-bullseye
environment:
SPANNER_EMULATOR_HOST: localhost:9010
SPANNER_EMULATOR_HOST_REST: localhost:9020
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

v2test:
docker:
- image: golang:1.23-bullseye
- image: golang:1.24-bullseye
environment:
SPANNER_EMULATOR_HOST: localhost:9010
SPANNER_EMULATOR_HOST_REST: localhost:9020
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
make -C v2 check-diff
check_lint:
docker:
- image: golang:1.23-bullseye
- image: golang:1.24-bullseye
working_directory: /go/src/github.com/cloudspannerecosystem/yo
steps:
- checkout
Expand All @@ -110,7 +110,7 @@ jobs:
make check_lint
check_go_mod:
docker:
- image: golang:1.23-bullseye
- image: golang:1.24-bullseye
working_directory: /go/src/github.com/cloudspannerecosystem/yo
steps:
- checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go 1.23
- name: Set up Go 1.24
uses: actions/setup-go@v3
with:
go-version: 1.23.x
go-version: 1.24.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module go.mercari.io/yo

go 1.23.0
go 1.24.0

toolchain go1.23.5
toolchain go1.24.5

require (
cloud.google.com/go v0.118.3
Expand Down
2 changes: 1 addition & 1 deletion v2/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.mercari.io/yo/v2

go 1.23.0
go 1.24.0

require (
cloud.google.com/go v0.118.3
Expand Down