From ee88c71c2436d01772183c67547e677ac804bd41 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 07:48:26 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.3 --- .circleci/config.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9248bf2..de03e4d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: test: docker: - - image: golang:1.21.4 + - image: golang:1.23.3 steps: - checkout - run: diff --git a/Dockerfile b/Dockerfile index e4b1f06..ecdf79d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21.4 as builder +FROM golang:1.23.3 as builder ARG VERSION COPY ./ /go/src/github.com/mikutas/grpc-go-helloworld/ RUN cd /go/src/github.com/mikutas/grpc-go-helloworld/ \