From e705dfb53465eb930baf9d722deaa65dec6c8ba4 Mon Sep 17 00:00:00 2001 From: mattjmcnaughton Date: Wed, 6 Feb 2019 15:14:44 -0500 Subject: [PATCH] Use go 1.11 for Dockerized Makefile targets Previously, we used the Go 1.9 image for our dockerized targets in the Makefile. The k8s project mandates Go 1.11 for k8s 1.13+ (https://github.com/kubernetes/community/blob/master/contributors/devel/development.md), so there's no reason not to use Go 1.11 here. I've verified all existing dockerized targets still work with go 1.11. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1f390beb9..e8808fba2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -IMAGE_NAME=golang:1.9 +IMAGE_NAME=golang:1.11 default: \ generate \