Use Go 1.10.1 to build all Go code. (#650)

Go 1.10.1 is a security release.

Signed-off-by: Brian Smith <brian@briansmith.org>
This commit is contained in:
Brian Smith 2018-04-02 14:58:30 -10:00 committed by GitHub
parent bf721466e3
commit df9ead9c36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -25,9 +25,9 @@ jobs:
- (cd proxy && cargo test --locked --no-default-features)
- language: go
# XXX; The "1.10" must be quoted or it will get intrepreted as 1.1. See
# Quote the version number to avoid parsing issues like
# https://github.com/travis-ci/gimme/issues/132.
go: "1.10"
go: "1.10.1"
go_import_path: github.com/runconduit/conduit
cache:
directories:

View File

@ -5,7 +5,7 @@
#
# When this file is changed, run `bin/update-go-deps-shas`.
FROM golang:1.10.0
FROM golang:1.10.1
ENV TEMP_GOPATH=/temp-gopath
WORKDIR ${TEMP_GOPATH}/src/github.com/runconduit/conduit

View File

@ -1,5 +1,5 @@
## compile binaries
FROM gcr.io/runconduit/go-deps:cc2413fa as golang
FROM gcr.io/runconduit/go-deps:7433a12f as golang
ARG CONDUIT_VERSION
WORKDIR /go/src/github.com/runconduit/conduit
COPY cli cli

View File

@ -1,5 +1,5 @@
## compile controller services
FROM gcr.io/runconduit/go-deps:cc2413fa as golang
FROM gcr.io/runconduit/go-deps:7433a12f as golang
ARG CONDUIT_VERSION
WORKDIR /go/src/github.com/runconduit/conduit
COPY controller/gen controller/gen

View File

@ -1,5 +1,5 @@
## compile proxy-init utility
FROM gcr.io/runconduit/go-deps:cc2413fa as golang
FROM gcr.io/runconduit/go-deps:7433a12f as golang
WORKDIR /go/src/github.com/runconduit/conduit
COPY ./proxy-init ./proxy-init
RUN CGO_ENABLED=0 GOOS=linux go install -v -installsuffix cgo ./proxy-init/

View File

@ -12,7 +12,7 @@ RUN $HOME/.yarn/bin/yarn install --pure-lockfile
RUN $HOME/.yarn/bin/yarn webpack
## compile go server
FROM gcr.io/runconduit/go-deps:cc2413fa as golang
FROM gcr.io/runconduit/go-deps:7433a12f as golang
ARG CONDUIT_VERSION
WORKDIR /go/src/github.com/runconduit/conduit
COPY web web