Skip to content

Commit 0bb0432

Browse files
committed
go.mod: update go-git/v5
1 parent e944458 commit 0bb0432

File tree

3 files changed

+107
-173
lines changed

3 files changed

+107
-173
lines changed

cmd/ascode-doc/doc/provider.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
"regexp"
99
"strings"
1010

11-
"github.com/mcuadros/ascode/starlark/types"
1211
"github.com/b5/outline/lib"
12+
"github.com/go-git/go-git/v5"
13+
"github.com/go-git/go-git/v5/plumbing/object"
14+
"github.com/go-git/go-git/v5/storage/memory"
1315
"github.com/hashicorp/terraform/configs/configschema"
1416
"github.com/hashicorp/terraform/providers"
15-
"gopkg.in/src-d/go-git.v4"
16-
"gopkg.in/src-d/go-git.v4/plumbing/object"
17-
"gopkg.in/src-d/go-git.v4/storage/memory"
17+
"github.com/mcuadros/ascode/starlark/types"
1818
)
1919

2020
type ResourceDocumentation struct {

go.mod

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,23 @@ go 1.14
44

55
require (
66
github.com/b5/outline v0.0.0-20190307020728-8cdd78996e40
7-
github.com/golang/protobuf v1.3.2 // indirect
7+
github.com/go-git/go-git/v5 v5.0.0
88
github.com/hashicorp/go-hclog v0.9.2
99
github.com/hashicorp/go-plugin v1.0.1
1010
github.com/hashicorp/hcl2 v0.0.0-20190618163856-0b64543c968c
1111
github.com/hashicorp/terraform v0.12.23
1212
github.com/jessevdk/go-flags v1.4.0
13-
github.com/kr/pty v1.1.8 // indirect
14-
github.com/kylelemons/godebug v1.1.0 // indirect
15-
github.com/mcuadros/hcl2 v0.0.0-20190712010647-ace444864d00
1613
github.com/mitchellh/cli v1.0.0
1714
github.com/oklog/ulid v2.0.0+incompatible
1815
github.com/qri-io/starlib v0.4.2-0.20190710173850-cb41fc97dda5
19-
github.com/spf13/pflag v1.0.3 // indirect
20-
github.com/stretchr/objx v0.2.0 // indirect
21-
github.com/stretchr/testify v1.3.0
16+
github.com/stretchr/testify v1.4.0
2217
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
2318
github.com/zclconf/go-cty v1.2.1
2419
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5
25-
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect
26-
google.golang.org/appengine v1.6.1 // indirect
27-
gopkg.in/src-d/go-git.v4 v4.12.0
2820
)
2921

3022
replace github.com/golangci/golangci-lint => github.com/golangci/golangci-lint v1.18.0
3123

3224
replace github.com/go-critic/go-critic v0.0.0-20181204210945-ee9bf5809ead => github.com/go-critic/go-critic v0.3.5-0.20190526074819-1df300866540
3325

3426
replace github.com/hashicorp/hcl2 => github.com/mcuadros/hcl2 v0.0.0-20190711172820-dd3dbf62a554
35-
36-
replace github.com/Unknwon/com => github.com/unknwon/com v1.0.1

0 commit comments

Comments
 (0)