Skip to content

Commit 9d3e306

Browse files
committed
fix
1 parent 0c00e6d commit 9d3e306

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

components/content-service/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ require (
7575
github.com/uber/jaeger-client-go v2.29.1+incompatible // indirect
7676
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
7777
go.opencensus.io v0.23.0 // indirect
78-
go.uber.org/atomic v1.4.0 // indirect
78+
go.uber.org/atomic v1.6.0 // indirect
7979
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
8080
golang.org/x/net v0.0.0-20220909164309-bea034e7d591 // indirect
8181
golang.org/x/text v0.3.7 // indirect

components/content-service/go.sum

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/supervisor/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ require (
9595
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
9696
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c // indirect
9797
go.opencensus.io v0.23.0 // indirect
98-
go.uber.org/atomic v1.4.0 // indirect
98+
go.uber.org/atomic v1.6.0 // indirect
9999
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1 // indirect
100100
golang.org/x/text v0.3.7 // indirect
101101
golang.org/x/time v0.0.0-20220922220347-f3bd1da661af // indirect

components/supervisor/go.sum

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

install/installer/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ require (
302302
gopkg.in/ini.v1 v1.63.2 // indirect
303303
gopkg.in/yaml.v2 v2.4.0 // indirect
304304
gopkg.in/yaml.v3 v3.0.1 // indirect
305-
gorm.io/datatypes v1.0.6 // indirect
305+
gorm.io/datatypes v1.0.7 // indirect
306306
gorm.io/driver/mysql v1.4.4 // indirect
307307
gorm.io/gorm v1.24.1 // indirect
308308
honnef.co/go/tools v0.2.2 // indirect

install/installer/go.sum

Lines changed: 5 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

install/installer/pkg/components/usage/configmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/gitpod-io/gitpod/common-go/baseserver"
11-
"github.com/gitpod-io/gitpod/usage/pkg/db"
11+
"github.com/gitpod-io/gitpod/common-go/db"
1212
"github.com/gitpod-io/gitpod/usage/pkg/server"
1313
"github.com/gitpod-io/gitpod/usage/pkg/stripe"
1414

install/installer/pkg/config/v1/experimental/experimental.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"time"
1515

1616
agentSmith "github.com/gitpod-io/gitpod/agent-smith/pkg/config"
17+
"github.com/gitpod-io/gitpod/common-go/db"
1718
"github.com/gitpod-io/gitpod/common-go/grpc"
18-
"github.com/gitpod-io/gitpod/usage/pkg/db"
1919
"github.com/gitpod-io/gitpod/ws-daemon/pkg/cpulimit"
2020
corev1 "k8s.io/api/core/v1"
2121
"k8s.io/apimachinery/pkg/api/resource"

0 commit comments

Comments
 (0)