diff --git a/.circleci/config.yml b/.circleci/config.yml index 35a1611b6..e962a01a2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: /go/src/go.mozilla.org/sops docker: - - image: circleci/golang:1.8 + - image: circleci/golang:1.12 steps: - checkout - setup_remote_docker diff --git a/.travis.yml b/.travis.yml index bac5b518a..5b5a2ace1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: go -go: 1.9 +go: 1.12 go_import_path: go.mozilla.org/sops/ addons: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2ac08e5aa..07252d07f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,7 +4,7 @@ Mozilla welcomes contributions from everyone. Here are a few guidelines and inst # Getting started -* Make sure you have Go 1.6 or greater installed. You can find information on how to install Go [here](https://golang.org/dl/) +* Make sure you have Go 1.12 or greater installed. You can find information on how to install Go [here](https://golang.org/dl/) * After following the [Go installation guide](https://golang.org/doc/install), run `go get go.mozilla.org/sops`. This will automatically clone this repository. * Switch into sops's directory, which will be in `$GOPATH/src/go.mozilla.org/sops`. * Run the tests with `make test`. They should all pass. diff --git a/Dockerfile b/Dockerfile index 5be951bd2..975e5e5f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.11 +FROM golang:1.12 COPY . /go/src/go.mozilla.org/sops WORKDIR /go/src/go.mozilla.org/sops diff --git a/README.rst b/README.rst index d8d833a74..67ab9b3c2 100644 --- a/README.rst +++ b/README.rst @@ -33,7 +33,7 @@ For the adventurous, unstable features are available in the `develop` branch, wh $ git checkout develop $ make install -(requires Go >= 1.8) +(requires Go >= 1.12) If you don't have Go installed, set it up with: