Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

bump: terraform 0.12.7 #58

Merged
merged 5 commits into from
Oct 4, 2019
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
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ jobs:
build:
environment:
CC_TEST_REPORTER_ID: 52729bbe50d1d3f27774761a3ae11ce34b3a14fbbdfdce903f8736eac52f30c5
GO111MODULE: on

docker:
# CircleCI Go images available at: https://hub.docker.com/r/circleci/golang/
- image: circleci/golang:1.10
- image: circleci/golang:1.12

working_directory: /go/src/github.com/louy/terraform-provider-uptimerobot

Expand All @@ -15,12 +16,13 @@ jobs:

- restore_cache:
keys:
- vendor-dep-{{ checksum "Gopkg.lock" }}
- vendor-dep-{{ checksum "go.sum" }}

- run: dep ensure -vendor-only -v
- run: go mod tidy -v
- run: go mod vendor

- save_cache:
key: vendor-dep-{{ checksum "Gopkg.lock" }}
key: vendor-dep-{{ checksum "go.sum" }}
paths:
- ./vendor

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@

*.log

c.out
/.idea
Loading