Skip to content

Commit

Permalink
deps: Bump go.mod directive to Go 1.16
Browse files Browse the repository at this point in the history
Updated vendor directory according to:

```
go: inconsistent vendoring in /Users/bflad/src/github.com/bflad/tfproviderlint:
	github.com/bflad/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/hashicorp/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/hashicorp/terraform-plugin-sdk/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt

	To ignore the vendor directory, use -mod=readonly or -mod=mod.
	To sync the vendor directory, run:
		go mod vendor
```
  • Loading branch information
bflad committed Mar 18, 2021
1 parent b8415e5 commit 3d344ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/bflad/tfproviderlint

go 1.13
go 1.16

require (
github.com/bflad/gopaniccheck v0.1.0
Expand Down
4 changes: 4 additions & 0 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ github.com/aws/aws-sdk-go/service/s3
github.com/aws/aws-sdk-go/service/sts
github.com/aws/aws-sdk-go/service/sts/stsiface
# github.com/bflad/gopaniccheck v0.1.0
## explicit
github.com/bflad/gopaniccheck/passes/logpaniccallexpr
github.com/bflad/gopaniccheck/passes/logpanicfcallexpr
github.com/bflad/gopaniccheck/passes/logpaniclncallexpr
Expand Down Expand Up @@ -149,6 +150,7 @@ github.com/hashicorp/terraform-exec/tfinstall
# github.com/hashicorp/terraform-json v0.5.0
github.com/hashicorp/terraform-json
# github.com/hashicorp/terraform-plugin-sdk v1.9.0
## explicit
github.com/hashicorp/terraform-plugin-sdk/acctest
github.com/hashicorp/terraform-plugin-sdk/helper/acctest
github.com/hashicorp/terraform-plugin-sdk/helper/hashcode
Expand Down Expand Up @@ -195,6 +197,7 @@ github.com/hashicorp/terraform-plugin-sdk/meta
github.com/hashicorp/terraform-plugin-sdk/plugin
github.com/hashicorp/terraform-plugin-sdk/terraform
# github.com/hashicorp/terraform-plugin-sdk/v2 v2.0.0
## explicit
github.com/hashicorp/terraform-plugin-sdk/v2/diag
github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest
github.com/hashicorp/terraform-plugin-sdk/v2/helper/logging
Expand Down Expand Up @@ -346,6 +349,7 @@ golang.org/x/text/transform
golang.org/x/text/unicode/bidi
golang.org/x/text/unicode/norm
# golang.org/x/tools v0.0.0-20200713011307-fd294ab11aed
## explicit
golang.org/x/tools/cmd/goimports
golang.org/x/tools/go/analysis
golang.org/x/tools/go/analysis/analysistest
Expand Down

0 comments on commit 3d344ea

Please sign in to comment.