Skip to content

Commit 4518d22

Browse files
committed
Bump build to Go 1.12.4
1 parent b0ab870 commit 4518d22

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ services:
99
- docker
1010

1111
go:
12-
- '1.12'
12+
- '1.12.4'
1313

1414
deploy:
1515
- provider: releases

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# To run ghostunnel from the image (for example):
77
# docker run --rm squareup/ghostunnel --version
88

9-
FROM golang:1.12-alpine as build
9+
FROM golang:1.12.4-alpine as build
1010

1111
MAINTAINER Cedric Staub "[email protected]"
1212

Diff for: Makefile.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
MKFILE_PATH := $(lastword $(MAKEFILE_LIST))
33
CURRENT_DIR := $(patsubst %/,%,$(dir $(realpath $(MKFILE_PATH))))
44

5-
GO_VERSION ?= 1.12
5+
GO_VERSION ?= 1.12.4
66
XGO_BASE_IMAGE ?= cssx/xgo-${GO_VERSION}
77

88
# Current system information

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ To run tests:
9696
make test
9797

9898
# Option 2: run unit & integration tests in a Docker container
99-
GO_VERSION=1.12 make docker-test
99+
GO_VERSION=1.12.4 make docker-test
100100

101101
# Open coverage information in browser
102102
go tool cover -html coverage-merged.out

0 commit comments

Comments
 (0)