diff --git a/Dockerfile.base-build b/Dockerfile.base-build index 2cfbb7b0f..53f2a338a 100644 --- a/Dockerfile.base-build +++ b/Dockerfile.base-build @@ -13,7 +13,7 @@ # limitations under the License. # When updating Go version, update Dockerfile.ci, Dockerfile.base-build, and go.mod -FROM golang:1.21.0 +FROM golang:1.21.5 WORKDIR /go/src/open-match.dev/open-match diff --git a/Dockerfile.ci b/Dockerfile.ci index 6fc296b4f..b47cd9fff 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -63,7 +63,7 @@ RUN rm -rf /usr/local/go/ # When updating Go version, update Dockerfile.ci, Dockerfile.base-build, and go.mod # reference: https://github.com/docker-library/golang/blob/master/1.20/bookworm/Dockerfile -RUN curl -L https://golang.org/dl/go1.21.0.linux-amd64.tar.gz | tar -C /usr/local -xz +RUN curl -L https://golang.org/dl/go1.21.5.linux-amd64.tar.gz | tar -C /usr/local -xz RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" \ && chmod -R 777 "$GOPATH" diff --git a/tutorials/custom_evaluator/director/go.mod b/tutorials/custom_evaluator/director/go.mod index 3cbd47d2d..26e3b22b9 100644 --- a/tutorials/custom_evaluator/director/go.mod +++ b/tutorials/custom_evaluator/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/custom_evaluator/evaluator/go.mod b/tutorials/custom_evaluator/evaluator/go.mod index fd50fabf2..550d37194 100644 --- a/tutorials/custom_evaluator/evaluator/go.mod +++ b/tutorials/custom_evaluator/evaluator/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/evaluator go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( github.com/sirupsen/logrus v1.9.3 diff --git a/tutorials/custom_evaluator/frontend/go.mod b/tutorials/custom_evaluator/frontend/go.mod index 761e25b0b..073b064a4 100644 --- a/tutorials/custom_evaluator/frontend/go.mod +++ b/tutorials/custom_evaluator/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/custom_evaluator/matchfunction/go.mod b/tutorials/custom_evaluator/matchfunction/go.mod index 1f0a0ef45..147e000d0 100644 --- a/tutorials/custom_evaluator/matchfunction/go.mod +++ b/tutorials/custom_evaluator/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/custom_evaluator/solution/director/go.mod b/tutorials/custom_evaluator/solution/director/go.mod index c045bd2f0..408c83685 100644 --- a/tutorials/custom_evaluator/solution/director/go.mod +++ b/tutorials/custom_evaluator/solution/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/custom_evaluator/solution/evaluator/go.mod b/tutorials/custom_evaluator/solution/evaluator/go.mod index f7323491b..939ceabd5 100644 --- a/tutorials/custom_evaluator/solution/evaluator/go.mod +++ b/tutorials/custom_evaluator/solution/evaluator/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/evaluator go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( github.com/sirupsen/logrus v1.9.3 diff --git a/tutorials/custom_evaluator/solution/frontend/go.mod b/tutorials/custom_evaluator/solution/frontend/go.mod index f20633a9c..617e25d26 100644 --- a/tutorials/custom_evaluator/solution/frontend/go.mod +++ b/tutorials/custom_evaluator/solution/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/custom_evaluator/solution/matchfunction/go.mod b/tutorials/custom_evaluator/solution/matchfunction/go.mod index 71918edb3..06c97b2ac 100644 --- a/tutorials/custom_evaluator/solution/matchfunction/go.mod +++ b/tutorials/custom_evaluator/solution/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/default_evaluator/director/go.mod b/tutorials/default_evaluator/director/go.mod index 3cbd47d2d..26e3b22b9 100644 --- a/tutorials/default_evaluator/director/go.mod +++ b/tutorials/default_evaluator/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/default_evaluator/frontend/go.mod b/tutorials/default_evaluator/frontend/go.mod index 761e25b0b..073b064a4 100644 --- a/tutorials/default_evaluator/frontend/go.mod +++ b/tutorials/default_evaluator/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/default_evaluator/matchfunction/go.mod b/tutorials/default_evaluator/matchfunction/go.mod index 1f0a0ef45..147e000d0 100644 --- a/tutorials/default_evaluator/matchfunction/go.mod +++ b/tutorials/default_evaluator/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/default_evaluator/solution/director/go.mod b/tutorials/default_evaluator/solution/director/go.mod index c045bd2f0..408c83685 100644 --- a/tutorials/default_evaluator/solution/director/go.mod +++ b/tutorials/default_evaluator/solution/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/default_evaluator/solution/frontend/go.mod b/tutorials/default_evaluator/solution/frontend/go.mod index f20633a9c..617e25d26 100644 --- a/tutorials/default_evaluator/solution/frontend/go.mod +++ b/tutorials/default_evaluator/solution/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/default_evaluator/solution/matchfunction/go.mod b/tutorials/default_evaluator/solution/matchfunction/go.mod index 5dae69f6f..db2068951 100644 --- a/tutorials/default_evaluator/solution/matchfunction/go.mod +++ b/tutorials/default_evaluator/solution/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker101/director/go.mod b/tutorials/matchmaker101/director/go.mod index 3cbd47d2d..26e3b22b9 100644 --- a/tutorials/matchmaker101/director/go.mod +++ b/tutorials/matchmaker101/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker101/frontend/go.mod b/tutorials/matchmaker101/frontend/go.mod index 761e25b0b..073b064a4 100644 --- a/tutorials/matchmaker101/frontend/go.mod +++ b/tutorials/matchmaker101/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker101/matchfunction/go.mod b/tutorials/matchmaker101/matchfunction/go.mod index 1f0a0ef45..147e000d0 100644 --- a/tutorials/matchmaker101/matchfunction/go.mod +++ b/tutorials/matchmaker101/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker101/solution/director/go.mod b/tutorials/matchmaker101/solution/director/go.mod index c045bd2f0..408c83685 100644 --- a/tutorials/matchmaker101/solution/director/go.mod +++ b/tutorials/matchmaker101/solution/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker101/solution/frontend/go.mod b/tutorials/matchmaker101/solution/frontend/go.mod index f20633a9c..617e25d26 100644 --- a/tutorials/matchmaker101/solution/frontend/go.mod +++ b/tutorials/matchmaker101/solution/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker101/solution/matchfunction/go.mod b/tutorials/matchmaker101/solution/matchfunction/go.mod index 0e750ae81..ae2086099 100644 --- a/tutorials/matchmaker101/solution/matchfunction/go.mod +++ b/tutorials/matchmaker101/solution/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( github.com/rs/xid v1.5.0 diff --git a/tutorials/matchmaker102/director/go.mod b/tutorials/matchmaker102/director/go.mod index 3cbd47d2d..26e3b22b9 100644 --- a/tutorials/matchmaker102/director/go.mod +++ b/tutorials/matchmaker102/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker102/frontend/go.mod b/tutorials/matchmaker102/frontend/go.mod index 761e25b0b..073b064a4 100644 --- a/tutorials/matchmaker102/frontend/go.mod +++ b/tutorials/matchmaker102/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker102/matchfunction/go.mod b/tutorials/matchmaker102/matchfunction/go.mod index 1f0a0ef45..147e000d0 100644 --- a/tutorials/matchmaker102/matchfunction/go.mod +++ b/tutorials/matchmaker102/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker102/solution/director/go.mod b/tutorials/matchmaker102/solution/director/go.mod index c045bd2f0..408c83685 100644 --- a/tutorials/matchmaker102/solution/director/go.mod +++ b/tutorials/matchmaker102/solution/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker102/solution/frontend/go.mod b/tutorials/matchmaker102/solution/frontend/go.mod index f20633a9c..617e25d26 100644 --- a/tutorials/matchmaker102/solution/frontend/go.mod +++ b/tutorials/matchmaker102/solution/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/matchmaker102/solution/matchfunction/go.mod b/tutorials/matchmaker102/solution/matchfunction/go.mod index 71918edb3..06c97b2ac 100644 --- a/tutorials/matchmaker102/solution/matchfunction/go.mod +++ b/tutorials/matchmaker102/solution/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/redis-enterprise-cloud/director/go.mod b/tutorials/redis-enterprise-cloud/director/go.mod index 3cbd47d2d..26e3b22b9 100644 --- a/tutorials/redis-enterprise-cloud/director/go.mod +++ b/tutorials/redis-enterprise-cloud/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/redis-enterprise-cloud/frontend/go.mod b/tutorials/redis-enterprise-cloud/frontend/go.mod index 761e25b0b..073b064a4 100644 --- a/tutorials/redis-enterprise-cloud/frontend/go.mod +++ b/tutorials/redis-enterprise-cloud/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/redis-enterprise-cloud/matchfunction/go.mod b/tutorials/redis-enterprise-cloud/matchfunction/go.mod index 1f0a0ef45..147e000d0 100644 --- a/tutorials/redis-enterprise-cloud/matchfunction/go.mod +++ b/tutorials/redis-enterprise-cloud/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/redis-enterprise-cloud/solution/director/go.mod b/tutorials/redis-enterprise-cloud/solution/director/go.mod index c045bd2f0..408c83685 100644 --- a/tutorials/redis-enterprise-cloud/solution/director/go.mod +++ b/tutorials/redis-enterprise-cloud/solution/director/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/director go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/redis-enterprise-cloud/solution/frontend/go.mod b/tutorials/redis-enterprise-cloud/solution/frontend/go.mod index f20633a9c..617e25d26 100644 --- a/tutorials/redis-enterprise-cloud/solution/frontend/go.mod +++ b/tutorials/redis-enterprise-cloud/solution/frontend/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/frontend go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1 diff --git a/tutorials/redis-enterprise-cloud/solution/matchfunction/go.mod b/tutorials/redis-enterprise-cloud/solution/matchfunction/go.mod index 71918edb3..06c97b2ac 100644 --- a/tutorials/redis-enterprise-cloud/solution/matchfunction/go.mod +++ b/tutorials/redis-enterprise-cloud/solution/matchfunction/go.mod @@ -2,7 +2,7 @@ module open-match.dev/open-match/tutorials/matchmaker101/matchfunction go 1.21 -toolchain go1.21.0 +toolchain go1.21.5 require ( google.golang.org/grpc v1.57.1