From 63fc485b3decb81ad30d08d6e7d774aa69cef7c8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 07:58:12 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.23.4 (#215) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | golang | stage | patch | `1.23.3` -> `1.23.4` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/PingCAP-QE/ee-apps). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- cloudevents-server/Dockerfile | 2 +- dl/Dockerfile | 2 +- tibuild/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cloudevents-server/Dockerfile b/cloudevents-server/Dockerfile index bf5ec81..c860884 100644 --- a/cloudevents-server/Dockerfile +++ b/cloudevents-server/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.3 AS builder +FROM golang:1.23.4 AS builder COPY . /app RUN cd /app && go build -o server ./cmd/server diff --git a/dl/Dockerfile b/dl/Dockerfile index 50f4676..f314a48 100644 --- a/dl/Dockerfile +++ b/dl/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.3 AS builder +FROM golang:1.23.4 AS builder COPY . /app RUN --mount=type=cache,target=/go/pkg/mod cd /app && go build -o server ./cmd/server diff --git a/tibuild/Dockerfile b/tibuild/Dockerfile index 29191c0..a3b5afa 100644 --- a/tibuild/Dockerfile +++ b/tibuild/Dockerfile @@ -5,7 +5,7 @@ COPY website/ . RUN --mount=type=cache,target=/webapp/node_modules npm install && yarn build # Copy whole project's contents(not entire folder) into .(/goapp/) and build Golang -FROM golang:1.23.3 as serverbuilder +FROM golang:1.23.4 as serverbuilder ENV GO111MODULE=on \ CGO_ENABLED=0 \ GOPROXY=https://goproxy.cn,direct