Skip to content

Bumped to golang 1.15 and upgraded all modules to their latest version #111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- '1.13'
- '1.15'
go_import_path: github.com/camptocamp/terraboard
install:
- make vendor
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12 as builder
FROM golang:1.15 as builder
WORKDIR /go/src/github.com/camptocamp/terraboard
COPY . .
ENV GO111MODULE=on
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.11
FROM golang:1.15
WORKDIR /go/src/github.com/camptocamp/terraboard
COPY . .
ENV GO111MODULE=on
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ test: ## Run the tests against the codebase
build: main.go $(FILES) ## Build the binary
CGO_ENABLED=1 GOOS=linux go build \
-ldflags "-linkmode external -extldflags -static -X main.version=$(VERSION)" \
-o $@ $<
strip $@
-o $(NAME) $<
strip $(NAME)

.PHONY: vendor
vendor: # Vendor go modules
Expand Down
41 changes: 26 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,34 @@
module github.com/camptocamp/terraboard

go 1.13
go 1.15

require (
cloud.google.com/go v0.45.1
github.com/aws/aws-sdk-go v1.31.9
github.com/denisenkom/go-mssqldb v0.0.0-20190820223206-44cdfe8d8ba9 // indirect
github.com/hashicorp/go-tfe v0.8.1
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
cloud.google.com/go v0.66.0 // indirect
cloud.google.com/go/storage v1.11.0
github.com/agext/levenshtein v1.2.3 // indirect
github.com/aws/aws-sdk-go v1.34.24
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/go-retryablehttp v0.6.7 // indirect
github.com/hashicorp/go-slug v0.4.3 // indirect
github.com/hashicorp/go-tfe v0.10.1
github.com/hashicorp/go-version v1.2.1 // indirect
github.com/hashicorp/hil v0.0.0-20200423225030-a18a1cd20038 // indirect
github.com/hashicorp/terraform v0.13.2
github.com/hashicorp/terraform-svchost v0.0.0-20191119180714-d2e4933b9136 // indirect
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 // indirect
github.com/jessevdk/go-flags v1.4.0
github.com/jinzhu/gorm v1.9.11
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/lib/pq v1.3.0 // indirect
github.com/jinzhu/gorm v1.9.16
github.com/lib/pq v1.8.0 // indirect
github.com/mitchellh/mapstructure v1.3.3 // indirect
github.com/pmezard/go-difflib v1.0.0
github.com/sirupsen/logrus v1.4.2
golang.org/x/mod v0.3.0 // indirect
golang.org/x/net v0.0.0-20200625001655-4c5254603344 // indirect
google.golang.org/api v0.9.0
gopkg.in/yaml.v2 v2.2.8
github.com/sirupsen/logrus v1.6.0
github.com/spf13/afero v1.4.0 // indirect
github.com/zclconf/go-cty v1.6.1 // indirect
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/sys v0.0.0-20200916084744-dbad9cb7cb7a // indirect
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
golang.org/x/tools v0.0.0-20200915201639-f4cefd1cb5ba // indirect
google.golang.org/api v0.32.0
google.golang.org/genproto v0.0.0-20200915202801-9f80d0600517 // indirect
google.golang.org/grpc v1.32.0 // indirect
gopkg.in/yaml.v2 v2.3.0
)
Loading