From ceb1a7178179acdf75c4bcbf9cba1925732b377c Mon Sep 17 00:00:00 2001 From: Krsna Mahapatra Date: Mon, 18 Sep 2023 09:30:51 -0400 Subject: [PATCH] minor bump for golang --- images/prow-tests/Dockerfile | 4 ++-- images/tool/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/prow-tests/Dockerfile b/images/prow-tests/Dockerfile index 2a7d566e0..d88651b40 100644 --- a/images/prow-tests/Dockerfile +++ b/images/prow-tests/Dockerfile @@ -175,11 +175,11 @@ RUN curl -fsSL "https://github.com/protocolbuffers/protobuf/releases/download/v$ # protoc-gen-gogofaster is installed below ############################################################ -FROM golang:1.20.7 AS external-go-previous +FROM golang:1.20.8 AS external-go-previous # Capture the version that dependabot bumps so that we can install it into the base image RUN go version | cut -d' ' -f3 > /golang.version -FROM golang:1.21.0 AS external-go-latest +FROM golang:1.21.1 AS external-go-latest # Capture the version that dependabot bumps so that we can install it into the base image RUN go version | cut -d' ' -f3 > /golang.version diff --git a/images/tool/Dockerfile b/images/tool/Dockerfile index 27d56c21e..4a0f02b02 100644 --- a/images/tool/Dockerfile +++ b/images/tool/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21.0 +FROM golang:1.21.1 # Required input: -e TOOL_NAME=name, i.e. TOOL_NAME=flaky-test-reporter ARG TOOL_NAME