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