From ad36f13e92409e7ccc14dd6fabedc367807e7f29 Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Fri, 11 Nov 2022 19:29:35 +0530 Subject: [PATCH] build: the go setup has been configured to 1.18 for retest build this commit make use of 1.18 version of go for building actions/retest code. Signed-off-by: Humble Chirammal --- actions/retest/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/retest/Dockerfile b/actions/retest/Dockerfile index f8eea3215..10c7e61e6 100644 --- a/actions/retest/Dockerfile +++ b/actions/retest/Dockerfile @@ -1,5 +1,5 @@ ARG WORK_DIR="/home/src" -ARG BASE_IMAGE="golang:1.16" +ARG BASE_IMAGE="golang:1.18" FROM ${BASE_IMAGE} as builder