From dfbd94a1aa586fc3303c16462872edfff1e58f66 Mon Sep 17 00:00:00 2001 From: Tim De Pauw Date: Sat, 28 Apr 2018 11:59:29 +0200 Subject: [PATCH] Lock down dep version --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0e1500f..e83d03d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,13 +6,16 @@ jobs: working_directory: /go/src/github.com/timdp/lwc environment: TEST_RESULTS: /tmp/test-results + DEP_VERSION: 0.4.1 steps: - checkout - run: mkdir -p $TEST_RESULTS - restore_cache: keys: - v1-pkg-cache-{{ checksum "Gopkg.lock" }} - - run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh + - run: | + curl -L -s https://github.com/golang/dep/releases/download/v$DEP_VERSION/dep-linux-amd64 -o $GOPATH/bin/dep + chmod +x $GOPATH/bin/dep - run: dep ensure - run: go get github.com/jstemmer/go-junit-report - run: go get github.com/mattn/goveralls