Skip to content

Commit

Permalink
Bumped version of go from 1.16 to 1.17 for dev (#2610)
Browse files Browse the repository at this point in the history
This is what will be used by the presubmit scripts, and thus using different versions may not clear presubmit checks due to differences in go formatting, mod files, etc.
  • Loading branch information
mhutchinson authored Sep 2, 2021
1 parent 6862b82 commit 4fa1e5d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## HEAD

* Recommended go version for development: 1.16x
* Recommended go version for development: 1.17x
* This is the version used by the cloudbuild presubmits. Using a
different version can lead to presubmits failing due to unexpected
diffs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The current state of feature implementation is recorded in the

To build and test Trillian you need:

- Go 1.14 or later (go 1.16 matches cloudbuild, and is preferred for developers
- Go 1.14 or later (go 1.17 matches cloudbuild, and is preferred for developers
that will be submitting PRs to this project).

To run many of the tests (and production deployment) you need:
Expand Down
2 changes: 1 addition & 1 deletion examples/deployment/docker/db_client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-buster
FROM golang:1.17-buster

RUN apt-get update && \
apt-get install -y mariadb-client
Expand Down
2 changes: 1 addition & 1 deletion examples/deployment/docker/log_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-buster as build
FROM golang:1.17-buster as build

WORKDIR /trillian

Expand Down
2 changes: 1 addition & 1 deletion examples/deployment/docker/log_signer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-buster as build
FROM golang:1.17-buster as build

WORKDIR /trillian

Expand Down
2 changes: 1 addition & 1 deletion integration/cloudbuild/testbase/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This Dockerfile builds a base image for Trillan integration tests.
FROM golang:1.16-buster
FROM golang:1.17-buster

WORKDIR /testbase

Expand Down

0 comments on commit 4fa1e5d

Please sign in to comment.