Skip to content

Commit 801c793

Browse files
authored
upgrade to go 1.14 (#2128)
1 parent 7220c1d commit 801c793

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.4
1+
1.14.3

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
- docker
55
language: go
66
go:
7-
- "1.13.x"
7+
- "1.14.x"
88

99
install:
1010
# This script is used by the Travis build to install a cookie for

GNUmakefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,13 @@ WEBSITE_REPO=github.com/hashicorp/terraform-website
33
PKG_NAME=google
44
DIR_NAME=google-beta
55

6-
GO111MODULE=on
7-
86
default: build
97

108
build: fmtcheck generate
119
go install
1210

1311
test: fmtcheck generate
14-
go test $(TESTARGS) -timeout=30s -parallel=4 $(TEST)
12+
go test $(TESTARGS) -timeout=30s $(TEST)
1513

1614
testacc: fmtcheck
1715
TF_ACC=1 TF_SCHEMA_PANIC_ON_ERROR=1 go test $(TEST) -v $(TESTARGS) -timeout 240m -ldflags="-X=github.com/terraform-providers/terraform-provider-google-beta/version.ProviderVersion=acc"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Developing the Provider
5151
---------------------------
5252

5353
If you wish to work on the provider, you'll first need [Go](http://www.golang.org)
54-
installed on your machine (version 1.13.0+ is *required*). You can use [goenv](https://github.com/syndbg/goenv)
54+
installed on your machine (version 1.14.0+ is *required*). You can use [goenv](https://github.com/syndbg/goenv)
5555
to manage your Go version. You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH),
5656
as well as adding `$GOPATH/bin` to your `$PATH`.
5757

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ require (
2424
google.golang.org/api v0.25.0
2525
)
2626

27-
go 1.13
27+
go 1.14

0 commit comments

Comments
 (0)