Skip to content

Commit

Permalink
Upgrade to go 1.14
Browse files Browse the repository at this point in the history
Signed-off-by: Bridget McErlean <[email protected]>
  • Loading branch information
zubron committed Apr 27, 2020
1 parent cbc6c0c commit 3f85729
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
check_go_mod:
docker:
- image: golang:1.13
- image: golang:1.14
steps:
- checkout
- run:
Expand All @@ -12,7 +12,7 @@ jobs:

check_readme_sync:
docker:
- image: golang:1.13
- image: golang:1.14
steps:
- checkout
- run:
Expand All @@ -21,7 +21,7 @@ jobs:

github-release:
docker:
- image: circleci/golang:1.13.1
- image: circleci/golang:1.14
steps:
- checkout
- run: curl -sL https://git.io/goreleaser | bash
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ifneq ($(VERBOSE),)
VERBOSE_FLAG = -v
endif
BUILDMNT = /go/src/$(GOTARGET)
BUILD_IMAGE ?= golang:1.13.0-stretch
BUILD_IMAGE ?= golang:1.14-stretch
AMD_IMAGE ?= debian:stretch-slim
ARM_IMAGE ?= arm64v8/ubuntu:16.04
WIN_IMAGE ?= mcr.microsoft.com/windows/servercore:1809
Expand Down
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/vmware-tanzu/sonobuoy

go 1.13
go 1.14

require (
cloud.google.com/go v0.41.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion test/integration/testImage/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.13.0-stretch AS base
FROM golang:1.14-stretch AS base
WORKDIR /src

# Handle the go modules first to take advantage of Docker cache.
Expand Down
2 changes: 1 addition & 1 deletion test/integration/testImage/src/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/vmware-tanzu/sonobuoy/test/integration/testImage/src

go 1.13
go 1.14

require (
github.com/pkg/errors v0.8.1
Expand Down

0 comments on commit 3f85729

Please sign in to comment.