From ea27866ba633bb302fa861ef092cc749b768e256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Miri=C4=87?= Date: Thu, 20 Apr 2023 10:14:39 +0200 Subject: [PATCH] Bump Go version in Docker image to 1.20.3 xk6 shouldn't be impacted by the security vulnerabilities patched in this Go release, but we're upgrading in an abundance of caution. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5d4f3d7..a8c9362 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG GO_VERSION=1.20.1 +ARG GO_VERSION=1.20.3 ARG VARIANT=bullseye FROM golang:${GO_VERSION}-${VARIANT} as builder