Skip to content

Commit 134e615

Browse files
author
lmvysakh
committed
Updated workflow
1 parent 8f79e42 commit 134e615

File tree

3 files changed

+32
-1
lines changed

3 files changed

+32
-1
lines changed

.github/workflows/hugecachedpendencyv5.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ jobs:
4545
github.com/sirupsen/logrus v1.9.3
4646
github.com/spf13/cobra v1.8.0
4747
github.com/spf13/viper v1.18.2
48+
go.mongodb.org/mongo-driver v1.13.1
49+
github.com/google/uuid v1.6.0
50+
github.com/minio/minio-go/v7 v7.0.28
51+
k8s.io/client-go v0.29.0
4852
)
4953
EOF
5054
@@ -71,6 +75,10 @@ jobs:
7175
_ "github.com/sirupsen/logrus"
7276
_ "github.com/spf13/cobra"
7377
_ "github.com/spf13/viper"
78+
_ "go.mongodb.org/mongo-driver/mongo"
79+
_ "github.com/google/uuid"
80+
_ "github.com/minio/minio-go/v7"
81+
_ "k8s.io/client-go/kubernetes"
7482
)
7583
func main() {}
7684
EOF
@@ -125,6 +133,10 @@ jobs:
125133
github.com/sirupsen/logrus v1.9.3
126134
github.com/spf13/cobra v1.8.0
127135
github.com/spf13/viper v1.18.2
136+
go.mongodb.org/mongo-driver v1.13.1
137+
github.com/google/uuid v1.6.0
138+
github.com/minio/minio-go/v7 v7.0.28
139+
k8s.io/client-go v0.29.0
128140
)
129141
130142
EOF
@@ -152,6 +164,10 @@ jobs:
152164
_ "github.com/sirupsen/logrus"
153165
_ "github.com/spf13/cobra"
154166
_ "github.com/spf13/viper"
167+
_ "go.mongodb.org/mongo-driver/mongo"
168+
_ "github.com/google/uuid"
169+
_ "github.com/minio/minio-go/v7"
170+
_ "k8s.io/client-go/kubernetes"
155171
)
156172
func main() {}
157173
EOF
@@ -206,6 +222,10 @@ jobs:
206222
github.com/sirupsen/logrus v1.9.3
207223
github.com/spf13/cobra v1.8.0
208224
github.com/spf13/viper v1.18.2
225+
go.mongodb.org/mongo-driver v1.13.1
226+
github.com/google/uuid v1.6.0
227+
github.com/minio/minio-go/v7 v7.0.28
228+
k8s.io/client-go v0.29.0
209229
)
210230
211231
"@
@@ -234,6 +254,10 @@ jobs:
234254
_ "github.com/sirupsen/logrus"
235255
_ "github.com/spf13/cobra"
236256
_ "github.com/spf13/viper"
257+
_ "go.mongodb.org/mongo-driver/mongo"
258+
_ "github.com/google/uuid"
259+
_ "github.com/minio/minio-go/v7"
260+
_ "k8s.io/client-go/kubernetes"
237261
)
238262
func main() {}
239263
"@
@@ -250,4 +274,3 @@ jobs:
250274
- name: Check Go module cache size
251275
run: du -sh $env:USERPROFILE\go\pkg\mod
252276

253-

bigcachetest/dummy.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@ import (
1818
_ "github.com/sirupsen/logrus"
1919
_ "github.com/spf13/cobra"
2020
_ "github.com/spf13/viper"
21+
_ "go.mongodb.org/mongo-driver/mongo"
22+
_ "github.com/google/uuid"
23+
_ "github.com/minio/minio-go/v7"
24+
_ "k8s.io/client-go/kubernetes"
2125
)
2226
func main() {}

bigcachetest/go.mod

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@ require (
1818
github.com/sirupsen/logrus v1.9.3
1919
github.com/spf13/cobra v1.8.0
2020
github.com/spf13/viper v1.18.2
21+
go.mongodb.org/mongo-driver v1.13.1
22+
github.com/google/uuid v1.6.0
23+
github.com/minio/minio-go/v7 v7.0.28
24+
k8s.io/client-go v0.29.0
2125
)
2226

0 commit comments

Comments
 (0)