Skip to content

Commit 19c2dd6

Browse files
committed
Upgrade to go v1.13
1 parent 8132d35 commit 19c2dd6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ cache:
3030
- $HOME/.cache/go-build
3131

3232
go:
33-
- 1.12.x
33+
- 1.13.x
3434

3535
# The `x_base_steps` top-level key is unknown to travis,
3636
# so we can use it to create a bunch of common build step

ci/dockerfiles/builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM openshift/origin-release:golang-1.12
1+
FROM openshift/origin-release:golang-1.13
22

33
WORKDIR /go/src/github.com/operator-framework/operator-sdk
44
ENV GOPATH=/go PATH=/go/src/github.com/operator-framework/operator-sdk/build:$PATH GOPROXY=https://proxy.golang.org/ GO111MODULE=on

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/operator-framework/operator-sdk
22

3-
go 1.12
3+
go 1.13
44

55
require (
66
cloud.google.com/go v0.37.2 // indirect

release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if ! $(git diff-index --quiet HEAD --); then
2323
exit 1
2424
fi
2525

26-
GO_VER="1.12"
26+
GO_VER="1.13"
2727
if ! go version | cut -d" " -f3 | grep -q "$GO_VER"; then
2828
echo "must compile binaries with Go compiler version v${GO_VER}"
2929
exit 1

0 commit comments

Comments
 (0)