Skip to content

Commit 053b50d

Browse files
ci: update github actions dependencies
1 parent f2685d2 commit 053b50d

File tree

5 files changed

+1838
-1590
lines changed

5 files changed

+1838
-1590
lines changed

server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.19-alpine AS build
1+
FROM golang:1.20-alpine AS build
22
ARG TAG=release
33
ARG VERSION
44

server/go.mod

Lines changed: 80 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,149 +1,154 @@
11
module github.com/reearth/reearth/server
22

33
require (
4-
cloud.google.com/go/profiler v0.3.0
5-
cloud.google.com/go/storage v1.22.1
6-
github.com/99designs/gqlgen v0.17.12
7-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.8.3
8-
github.com/auth0/go-jwt-middleware/v2 v2.0.1
9-
github.com/avast/retry-go/v4 v4.0.4
4+
cloud.google.com/go/profiler v0.3.1
5+
cloud.google.com/go/storage v1.30.1
6+
github.com/99designs/gqlgen v0.17.30
7+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.13.1
8+
github.com/auth0/go-jwt-middleware/v2 v2.1.0
9+
github.com/avast/retry-go/v4 v4.3.4
1010
github.com/blang/semver v3.5.1+incompatible
11-
github.com/gavv/httpexpect/v2 v2.3.1
12-
github.com/goccy/go-yaml v1.9.8
11+
github.com/gavv/httpexpect/v2 v2.15.0
12+
github.com/goccy/go-yaml v1.11.0
1313
github.com/google/uuid v1.3.0
1414
github.com/iancoleman/strcase v0.2.0
1515
github.com/idubinskiy/schematyper v0.0.0-20190118213059-f71b40dac30d
16-
github.com/jarcoal/httpmock v1.2.0
17-
github.com/joho/godotenv v1.4.0
16+
github.com/jarcoal/httpmock v1.3.0
17+
github.com/joho/godotenv v1.5.1
1818
github.com/jonas-p/go-shp v0.1.1
1919
github.com/kelseyhightower/envconfig v1.4.0
2020
github.com/kennygrant/sanitize v1.2.4
21-
github.com/labstack/echo/v4 v4.7.2
22-
github.com/labstack/gommon v0.3.1
21+
github.com/labstack/echo/v4 v4.10.2
22+
github.com/labstack/gommon v0.4.0
2323
github.com/mitchellh/mapstructure v1.5.0
2424
github.com/paulmach/go.geojson v1.4.0
2525
github.com/pkg/errors v0.9.1
26-
github.com/ravilushqa/otelgqlgen v0.8.0
27-
github.com/reearth/reearthx v0.0.0-20230417135043-7b80b5104916
28-
github.com/samber/lo v1.27.0
26+
github.com/ravilushqa/otelgqlgen v0.11.0
27+
github.com/reearth/reearthx v0.0.0-20230424025048-6dbbe40aad26
28+
github.com/samber/lo v1.38.1
2929
github.com/sendgrid/sendgrid-go v3.12.0+incompatible
30-
github.com/sirupsen/logrus v1.8.1
31-
github.com/spf13/afero v1.9.3
32-
github.com/square/mongo-lock v0.0.0-20201208161834-4db518ed7fb2
33-
github.com/stretchr/testify v1.8.0
30+
github.com/sirupsen/logrus v1.9.0
31+
github.com/spf13/afero v1.9.5
32+
github.com/square/mongo-lock v0.0.0-20220601164918-701ecf357cd7
33+
github.com/stretchr/testify v1.8.2
3434
github.com/twpayne/go-kml v1.5.2
3535
github.com/uber/jaeger-client-go v2.30.0+incompatible
3636
github.com/uber/jaeger-lib v2.4.1+incompatible
3737
github.com/vektah/dataloaden v0.3.0
38-
github.com/vektah/gqlparser/v2 v2.4.6
39-
github.com/zitadel/oidc v1.5.1
40-
go.mongodb.org/mongo-driver v1.10.1
41-
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.32.0
42-
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.32.0
43-
go.opentelemetry.io/otel v1.7.0
44-
go.opentelemetry.io/otel/sdk v1.7.0
45-
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
46-
golang.org/x/exp v0.0.0-20220706164943-b4a6d9510983
47-
golang.org/x/net v0.0.0-20220722155237-a158d28d115b
48-
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
49-
golang.org/x/text v0.4.0
50-
golang.org/x/tools v0.1.12
51-
google.golang.org/api v0.80.0
38+
github.com/vektah/gqlparser/v2 v2.5.1
39+
github.com/zitadel/oidc v1.13.4
40+
go.mongodb.org/mongo-driver v1.11.4
41+
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.41.0
42+
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.41.0
43+
go.opentelemetry.io/otel v1.15.0
44+
go.opentelemetry.io/otel/sdk v1.15.0
45+
golang.org/x/crypto v0.8.0
46+
golang.org/x/exp v0.0.0-20230425010034-47ecfdc1ba53
47+
golang.org/x/net v0.9.0
48+
golang.org/x/oauth2 v0.7.0
49+
golang.org/x/text v0.9.0
50+
golang.org/x/tools v0.8.0
51+
google.golang.org/api v0.120.0
5252
gopkg.in/go-playground/colors.v1 v1.2.0
5353
gopkg.in/h2non/gock.v1 v1.1.2
5454
gopkg.in/square/go-jose.v2 v2.6.0
5555
)
5656

5757
require (
58-
cloud.google.com/go v0.100.2 // indirect
59-
cloud.google.com/go/compute v1.6.1 // indirect
60-
cloud.google.com/go/iam v0.3.0 // indirect
61-
cloud.google.com/go/trace v1.2.0 // indirect
62-
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.32.3 // indirect
58+
cloud.google.com/go v0.110.0 // indirect
59+
cloud.google.com/go/compute v1.19.0 // indirect
60+
cloud.google.com/go/compute/metadata v0.2.3 // indirect
61+
cloud.google.com/go/iam v0.13.0 // indirect
62+
cloud.google.com/go/trace v1.9.0 // indirect
63+
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.37.1 // indirect
6364
github.com/agnivade/levenshtein v1.1.1 // indirect
6465
github.com/ajg/form v1.5.1 // indirect
6566
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
6667
github.com/alecthomas/units v0.0.0-20210927113745-59d0afb8317a // indirect
67-
github.com/andybalholm/brotli v1.0.2 // indirect
68-
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
68+
github.com/andybalholm/brotli v1.0.4 // indirect
69+
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
6970
github.com/davecgh/go-spew v1.1.1 // indirect
7071
github.com/dgryski/trifles v0.0.0-20200705224438-cafc02a1ee2b // indirect
71-
github.com/fatih/color v1.12.0 // indirect
72-
github.com/fatih/structs v1.0.0 // indirect
73-
github.com/felixge/httpsnoop v1.0.2 // indirect
72+
github.com/fatih/color v1.13.0 // indirect
73+
github.com/fatih/structs v1.1.0 // indirect
7474
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 // indirect
75-
github.com/go-logr/logr v1.2.3 // indirect
75+
github.com/go-logr/logr v1.2.4 // indirect
7676
github.com/go-logr/stdr v1.2.2 // indirect
77+
github.com/gobwas/glob v0.2.3 // indirect
7778
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
7879
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect
7980
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
80-
github.com/golang/protobuf v1.5.2 // indirect
81+
github.com/golang/protobuf v1.5.3 // indirect
8182
github.com/golang/snappy v0.0.3 // indirect
82-
github.com/google/go-cmp v0.5.8 // indirect
83-
github.com/google/go-querystring v1.0.0 // indirect
84-
github.com/google/pprof v0.0.0-20220412212628-83db2b799d1f // indirect
85-
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
86-
github.com/googleapis/go-type-adapters v1.0.0 // indirect
83+
github.com/google/go-cmp v0.5.9 // indirect
84+
github.com/google/go-querystring v1.1.0 // indirect
85+
github.com/google/pprof v0.0.0-20221103000818-d260c55eee4c // indirect
86+
github.com/google/s2a-go v0.1.2 // indirect
87+
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
88+
github.com/googleapis/gax-go/v2 v2.8.0 // indirect
8789
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
88-
github.com/gorilla/handlers v1.5.1 // indirect
8990
github.com/gorilla/mux v1.8.0 // indirect
9091
github.com/gorilla/schema v1.2.0 // indirect
9192
github.com/gorilla/securecookie v1.1.1 // indirect
9293
github.com/gorilla/websocket v1.5.0 // indirect
9394
github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 // indirect
94-
github.com/hashicorp/golang-lru v0.5.4 // indirect
95-
github.com/imkira/go-interpol v1.0.0 // indirect
96-
github.com/klauspost/compress v1.13.6 // indirect
95+
github.com/hashicorp/golang-lru/v2 v2.0.1 // indirect
96+
github.com/hpcloud/tail v1.0.0 // indirect
97+
github.com/imkira/go-interpol v1.1.0 // indirect
98+
github.com/klauspost/compress v1.15.0 // indirect
9799
github.com/maruel/panicparse/v2 v2.3.1 // indirect
98-
github.com/matryer/moq v0.2.7 // indirect
99100
github.com/mattn/go-colorable v0.1.13 // indirect
100101
github.com/mattn/go-isatty v0.0.17 // indirect
102+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
101103
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
102104
github.com/nicksnyder/go-i18n/v2 v2.2.1 // indirect
103105
github.com/oklog/ulid v1.3.1 // indirect
104106
github.com/opentracing/opentracing-go v1.2.0 // indirect
105107
github.com/pmezard/go-difflib v1.0.0 // indirect
108+
github.com/rs/cors v1.8.3 // indirect
106109
github.com/russross/blackfriday/v2 v2.1.0 // indirect
110+
github.com/sanity-io/litter v1.5.5 // indirect
107111
github.com/sendgrid/rest v2.6.9+incompatible // indirect
108112
github.com/sergi/go-diff v1.1.0 // indirect
109113
github.com/smartystreets/assertions v1.1.1 // indirect
110114
github.com/smartystreets/goconvey v1.6.4 // indirect
111115
github.com/tidwall/pretty v1.0.1 // indirect
112-
github.com/urfave/cli/v2 v2.8.1 // indirect
116+
github.com/urfave/cli/v2 v2.24.4 // indirect
113117
github.com/valyala/bytebufferpool v1.0.0 // indirect
114-
github.com/valyala/fasthttp v1.27.0 // indirect
115-
github.com/valyala/fasttemplate v1.2.1 // indirect
118+
github.com/valyala/fasthttp v1.34.0 // indirect
119+
github.com/valyala/fasttemplate v1.2.2 // indirect
116120
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
117121
github.com/xdg-go/scram v1.1.1 // indirect
118122
github.com/xdg-go/stringprep v1.0.3 // indirect
119-
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
123+
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
120124
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
121-
github.com/xeipuuv/gojsonschema v1.1.0 // indirect
125+
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
122126
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
123127
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
124128
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
125129
github.com/yudai/gojsondiff v1.0.0 // indirect
126130
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
127-
github.com/zitadel/logging v0.3.3 // indirect
128-
go.opencensus.io v0.23.0 // indirect
129-
go.opentelemetry.io/contrib v1.7.0 // indirect
130-
go.opentelemetry.io/otel/trace v1.7.0 // indirect
131-
go.uber.org/atomic v1.9.0 // indirect
131+
github.com/zitadel/logging v0.3.4 // indirect
132+
go.opencensus.io v0.24.0 // indirect
133+
go.opentelemetry.io/contrib v1.10.0 // indirect
134+
go.opentelemetry.io/otel/trace v1.15.0 // indirect
135+
go.uber.org/atomic v1.10.0 // indirect
132136
go.uber.org/multierr v1.8.0 // indirect
133137
go.uber.org/zap v1.21.0 // indirect
134-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
135-
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
136-
golang.org/x/sys v0.6.0 // indirect
137-
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
138-
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect
138+
golang.org/x/mod v0.10.0 // indirect
139+
golang.org/x/sync v0.1.0 // indirect
140+
golang.org/x/sys v0.7.0 // indirect
141+
golang.org/x/time v0.3.0 // indirect
142+
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
139143
google.golang.org/appengine v1.6.7 // indirect
140-
google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335 // indirect
141-
google.golang.org/grpc v1.46.0 // indirect
142-
google.golang.org/protobuf v1.28.0 // indirect
144+
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
145+
google.golang.org/grpc v1.54.0 // indirect
146+
google.golang.org/protobuf v1.30.0 // indirect
143147
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
144-
gopkg.in/yaml.v2 v2.4.0 // indirect
148+
gopkg.in/fsnotify.v1 v1.4.7 // indirect
149+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
145150
gopkg.in/yaml.v3 v3.0.1 // indirect
146-
moul.io/http2curl v1.0.1-0.20190925090545-5cd742060b0e // indirect
151+
moul.io/http2curl/v2 v2.3.0 // indirect
147152
)
148153

149154
go 1.19

0 commit comments

Comments
 (0)