Skip to content

Commit 8799707

Browse files
erock2112SkCQ
authored andcommitted
Presumed fix for roll_cipd_packages
Our Louhi-built CIPD packages don't follow exactly the same format as the LUCI ones. Change-Id: I21d81970647fd3e03cac5ad8a1e80d0b13ab42b3 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/810126 Reviewed-by: Ravi Mistry <[email protected]> Commit-Queue: Eric Boren <[email protected]>
1 parent 92d852b commit 8799707

File tree

5 files changed

+32
-105
lines changed

5 files changed

+32
-105
lines changed

go.mod

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ require (
4141
github.com/google/uuid v1.4.0
4242
github.com/googleapis/gax-go/v2 v2.12.0
4343
github.com/gorilla/securecookie v1.1.1
44+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1
4445
github.com/hako/durafmt v0.0.0-20200710122514-c0fb7b4da026
4546
github.com/hashicorp/go-multierror v1.1.0
4647
github.com/hashicorp/golang-lru v0.5.4
@@ -81,8 +82,9 @@ require (
8182
github.com/yannh/kubeconform v0.6.3
8283
github.com/yusufpapurcu/wmi v1.2.2
8384
github.com/zeebo/bencode v1.0.0
84-
go.chromium.org/luci v0.0.0-20231204022756-276ff2f399c8
85+
go.chromium.org/luci v0.0.0-20240206071351-fb32c458db6e
8586
go.opencensus.io v0.24.0
87+
go.temporal.io/sdk v1.25.2-0.20240108215803-6244097c5aca
8688
golang.org/x/exp v0.0.0-20231127185646-65229373498e
8789
golang.org/x/net v0.19.0
8890
golang.org/x/oauth2 v0.13.0
@@ -100,6 +102,7 @@ require (
100102
gopkg.in/fsnotify.v1 v1.4.7
101103
gopkg.in/olivere/elastic.v5 v5.0.86
102104
gopkg.in/yaml.v2 v2.4.0
105+
gopkg.in/yaml.v3 v3.0.1
103106
howett.net/plist v1.0.0
104107
k8s.io/api v0.22.12
105108
k8s.io/apimachinery v0.22.12
@@ -143,7 +146,6 @@ require (
143146
github.com/googleapis/gnostic v0.5.5 // indirect
144147
github.com/gopherjs/gopherjs v1.17.2 // indirect
145148
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
146-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.18.1 // indirect
147149
github.com/hashicorp/errwrap v1.1.0 // indirect
148150
github.com/hashicorp/hcl v1.0.0 // indirect
149151
github.com/huandu/xstrings v1.4.0 // indirect
@@ -192,7 +194,6 @@ require (
192194
github.com/prometheus/procfs v0.6.0 // indirect
193195
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac // indirect
194196
github.com/robfig/cron v1.2.0 // indirect
195-
github.com/rogpeppe/go-internal v1.11.0 // indirect
196197
github.com/rs/zerolog v1.29.0 // indirect
197198
github.com/russross/blackfriday/v2 v2.1.0 // indirect
198199
github.com/santhosh-tekuri/jsonschema/v5 v5.1.1 // indirect
@@ -218,24 +219,20 @@ require (
218219
go.opentelemetry.io/otel/metric v1.21.0 // indirect
219220
go.opentelemetry.io/otel/trace v1.21.0 // indirect
220221
go.temporal.io/api v1.26.2 // indirect
221-
go.temporal.io/sdk v1.25.2-0.20240108215803-6244097c5aca // indirect
222222
go.uber.org/atomic v1.9.0 // indirect
223-
golang.org/x/crypto v0.16.0 // indirect
223+
golang.org/x/crypto v0.17.0 // indirect
224224
golang.org/x/mod v0.14.0 // indirect
225225
golang.org/x/text v0.14.0 // indirect
226226
golang.org/x/tools/go/vcs v0.1.0-deprecated // indirect
227-
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
228227
google.golang.org/appengine v1.6.8 // indirect
229228
google.golang.org/genproto/googleapis/bytestream v0.0.0-20231030173426-d783a09b4405 // indirect
230229
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
231-
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
232230
gopkg.in/inf.v0 v0.9.1 // indirect
233231
gopkg.in/ini.v1 v1.67.0 // indirect
234232
gopkg.in/sourcemap.v1 v1.0.5 // indirect
235233
gopkg.in/src-d/go-billy.v4 v4.3.2 // indirect
236234
gopkg.in/src-d/go-git.v4 v4.13.1 // indirect
237235
gopkg.in/warnings.v0 v0.1.2 // indirect
238-
gopkg.in/yaml.v3 v3.0.1 // indirect
239236
k8s.io/klog/v2 v2.110.1 // indirect
240237
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect
241238
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect

0 commit comments

Comments
 (0)