Skip to content

Commit d4e8552

Browse files
authored
Merge pull request cloudflare#1027 from cpu/cpu-go-one-dot-twelve-plus
project: require Go 1.12.x
2 parents 633726f + 0338350 commit d4e8552

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ language: go
33

44
matrix:
55
include:
6-
- go: 1.11.x
7-
- go: 1.12.1
6+
- go: 1.12.7
87
- go: master
98
os: osx
109
env: BUILD_TAGS=

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.12.1
1+
FROM golang:1.12.7
22

33
ENV USER root
44

Dockerfile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.9.2
1+
FROM golang:1.12.7
22

33
ENV USER root
44

Dockerfile.minimal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.12.1-alpine3.9
1+
FROM golang:1.12.7-alpine3.9
22

33
ENV GOPATH /go
44
ENV USER root

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
CFSSL is CloudFlare's PKI/TLS swiss army knife. It is both a command line
1010
tool and an HTTP API server for signing, verifying, and bundling TLS
11-
certificates. It requires Go 1.11+ to build.
11+
certificates. It requires Go 1.12+ to build.
1212

1313
Note that certain linux distributions have certain algorithms removed
1414
(RHEL-based distributions in particular), so the golang from the
@@ -30,7 +30,7 @@ CFSSL consists of:
3030
### Building
3131

3232
Building cfssl requires a
33-
[working Go 1.11+ installation](http://golang.org/doc/install) and a
33+
[working Go 1.12+ installation](http://golang.org/doc/install) and a
3434
properly set `GOPATH`.
3535

3636
```
@@ -62,7 +62,7 @@ You can set the `GOOS` and `GOARCH` environment variables to have Go cross compi
6262
### Installation
6363

6464
Installation requires a
65-
[working Go 1.11+ installation](http://golang.org/doc/install) and a
65+
[working Go 1.12+ installation](http://golang.org/doc/install) and a
6666
properly set `GOPATH`.
6767

6868
```

0 commit comments

Comments
 (0)