Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
chore: update dependencies (#134)
Browse files Browse the repository at this point in the history
Co-authored-by: rot1024 <aayhrot@gmail.com>
  • Loading branch information
yk-eukarya and rot1024 authored Apr 11, 2022
1 parent db6ff77 commit 1b9b6be
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 82 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
- name: Run GoReleaser for nightly
if: "!needs.info.outputs.new_tag"
uses: goreleaser/goreleaser-action@v2
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: set up
uses: actions/setup-go@v3
with:
go-version: 1.17
go-version: 1.18
id: go
- name: checkout
uses: actions/checkout@v3
Expand All @@ -26,11 +26,10 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.43
version: v1.45
args: --timeout=10m
skip-go-installation: true
- name: test
run: go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic -timeout 15m
run: go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic -timeout 10m
- name: Send coverage report
uses: codecov/codecov-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17-alpine AS build
FROM golang:1.18-alpine AS build
ARG TAG=release
ARG REV
ARG VERSION
Expand Down
52 changes: 26 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ module github.com/reearth/reearth-backend
require (
cloud.google.com/go/profiler v0.2.0
cloud.google.com/go/storage v1.21.0
github.com/99designs/gqlgen v0.17.1
github.com/99designs/gqlgen v0.17.2
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.3.0
github.com/auth0/go-jwt-middleware/v2 v2.0.0
github.com/auth0/go-jwt-middleware/v2 v2.0.1
github.com/blang/semver v3.5.1+incompatible
github.com/caos/oidc v1.0.0
github.com/caos/oidc v1.2.0
github.com/goccy/go-yaml v1.9.5
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f
github.com/google/uuid v1.3.0
Expand All @@ -19,40 +19,40 @@ require (
github.com/jonas-p/go-shp v0.1.1
github.com/kelseyhightower/envconfig v1.4.0
github.com/kennygrant/sanitize v1.2.4
github.com/labstack/echo/v4 v4.7.0
github.com/labstack/echo/v4 v4.7.2
github.com/labstack/gommon v0.3.1
github.com/mitchellh/mapstructure v1.4.3
github.com/oklog/ulid v1.3.1
github.com/paulmach/go.geojson v1.4.0
github.com/pkg/errors v0.9.1
github.com/ravilushqa/otelgqlgen v0.5.1
github.com/ravilushqa/otelgqlgen v0.6.0
github.com/sendgrid/sendgrid-go v3.11.1+incompatible
github.com/sirupsen/logrus v1.8.1
github.com/spf13/afero v1.8.1
github.com/spf13/afero v1.8.2
github.com/square/mongo-lock v0.0.0-20201208161834-4db518ed7fb2
github.com/stretchr/testify v1.7.0
github.com/stretchr/testify v1.7.1
github.com/twpayne/go-kml v1.5.2
github.com/uber/jaeger-client-go v2.30.0+incompatible
github.com/uber/jaeger-lib v2.4.1+incompatible
github.com/vektah/dataloaden v0.3.0
github.com/vektah/gqlparser/v2 v2.4.1
go.mongodb.org/mongo-driver v1.8.4
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.29.0
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.29.0
go.opentelemetry.io/otel v1.4.1
go.opentelemetry.io/otel/sdk v1.4.1
golang.org/x/crypto v0.0.0-20220112180741-5e0467b6c7ce
go.mongodb.org/mongo-driver v1.9.0
go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho v0.31.0
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.31.0
go.opentelemetry.io/otel v1.6.1
go.opentelemetry.io/otel/sdk v1.6.1
golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29
golang.org/x/text v0.3.7
golang.org/x/tools v0.1.9
google.golang.org/api v0.70.0
golang.org/x/tools v0.1.10
google.golang.org/api v0.74.0
gopkg.in/go-playground/colors.v1 v1.2.0
gopkg.in/h2non/gock.v1 v1.1.2
gopkg.in/square/go-jose.v2 v2.6.0
)

require (
cloud.google.com/go v0.100.2 // indirect
cloud.google.com/go/compute v1.3.0 // indirect
cloud.google.com/go/compute v1.5.0 // indirect
cloud.google.com/go/iam v0.1.1 // indirect
cloud.google.com/go/trace v1.0.0 // indirect
github.com/HdrHistogram/hdrhistogram-go v1.0.1 // indirect
Expand All @@ -66,7 +66,7 @@ require (
github.com/fatih/color v1.12.0 // indirect
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 // indirect
github.com/go-logr/logr v1.2.2 // indirect
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
Expand All @@ -75,7 +75,7 @@ require (
github.com/golang/snappy v0.0.3 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/pprof v0.0.0-20220113144219-d25a53d42d00 // indirect
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
github.com/googleapis/gax-go/v2 v2.2.0 // indirect
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/gorilla/handlers v1.5.1 // indirect
github.com/gorilla/schema v1.2.0 // indirect
Expand Down Expand Up @@ -104,22 +104,22 @@ require (
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
go.opencensus.io v0.23.0 // indirect
go.opentelemetry.io/contrib v1.4.0 // indirect
go.opentelemetry.io/otel/trace v1.4.1 // indirect
go.opentelemetry.io/otel/trace v1.6.1 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/mod v0.5.1 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/net v0.0.0-20220325170049-de3da57026de // indirect
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c // indirect
google.golang.org/grpc v1.44.0 // indirect
google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb // indirect
google.golang.org/grpc v1.45.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

go 1.17
go 1.18
Loading

0 comments on commit 1b9b6be

Please sign in to comment.