From 9cd28289b53fed540034aaa980adb391e615c335 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Wed, 12 Aug 2020 10:47:19 -0400 Subject: [PATCH] testing: use supported golang version in ci container images Bump the golang version to 1.14.7. Go 1.14 is now the older supported version, with the recent release of Go. Signed-off-by: John Mulligan --- testing/containers/ceph/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/containers/ceph/Dockerfile b/testing/containers/ceph/Dockerfile index 998f91e..ac69eca 100644 --- a/testing/containers/ceph/Dockerfile +++ b/testing/containers/ceph/Dockerfile @@ -12,7 +12,7 @@ RUN true && \ "libcephfs-devel-${cv}" "librados-devel-${cv}" "librbd-devel-${cv}" && \ true -ENV GOTAR=go1.12.17.linux-amd64.tar.gz +ENV GOTAR=go1.14.7.linux-amd64.tar.gz RUN true && \ curl -o /tmp/${GOTAR} https://dl.google.com/go/${GOTAR} && \ tar -x -C /opt/ -f /tmp/${GOTAR} && \