Skip to content

Commit

Permalink
Updated go 1.21.0 to 1.21.5 (#1678)
Browse files Browse the repository at this point in the history
* Updated go 1.21 to 1.21.5

* Fixed golangci

* Reverted GOLANGCI
  • Loading branch information
kemurayama committed Dec 13, 2023
1 parent 4dca40d commit 3b3d49b
Show file tree
Hide file tree
Showing 34 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.base-build
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/evaluator/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/evaluator/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/custom_evaluator/solution/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/solution/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/solution/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/default_evaluator/solution/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/solution/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/solution/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker101/solution/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/solution/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/solution/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/matchmaker102/solution/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/redis-enterprise-cloud/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/redis-enterprise-cloud/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/redis-enterprise-cloud/matchfunction/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/redis-enterprise-cloud/solution/director/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tutorials/redis-enterprise-cloud/solution/frontend/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3b3d49b

Please sign in to comment.