Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update golang docker tag to v1.23.1 [skip ci] #199

Merged
merged 8 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dockerfiles/cd/builders/ng-monitoring/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN --mount=type=cache,target=/var/cache/dnf \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL https://dl.google.com/go/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin/:$PATH
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cd/builders/skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value: &value-go1-22
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.22.7
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved
- op: add
path: /build/artifacts/1/kaniko/buildArgs
value: *value-go1-22
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cd/builders/tidb-dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN --mount=type=cache,target=/var/cache/dnf \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL https://dl.google.com/go/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin/:$PATH
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cd/builders/tidb-operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - docker build -t tidb-operator -f Dockerfile ./tidb-operator

########### stage: builder
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
FROM golang:${GOLANG_VERSION} as builder
LABEL org.opencontainers.image.authors "wuhui.zuo@pingcap.com"
LABEL org.opencontainers.image.description "binary builder for TiDB Operator"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cd/builders/tidb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN --mount=type=cache,target=/var/cache/dnf \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL https://dl.google.com/go/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin/:$PATH
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cd/builders/tiflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN --mount=type=cache,target=/var/cache/dnf \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL https://dl.google.com/go/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin/:$PATH
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ci/base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base image
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
FROM golang:${GOLANG_VERSION}

LABEL go-version "${GOLANG_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/ci/release-build-base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ RUN yum update --nogpgcheck -y && \

##### install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.13
ARG GOLANG_VERSION=1.23.1
RUN OS=linux; ARCH=$([ "$(arch)" = "x86_64" ] && echo amd64 || echo arm64); \
curl -fsSL https://dl.google.com/go/go${GOLANG_VERSION}.linux-${ARCH}.tar.gz | tar -C /usr/local -xz
ENV PATH /usr/local/go/bin/:$PATH
Expand Down
12 changes: 6 additions & 6 deletions dockerfiles/ci/skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.21.13
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved
- name: go-1.20
patches:
- op: replace
Expand All @@ -62,7 +62,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.20.14
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved
- name: go-1.19
patches:
- op: replace
Expand All @@ -72,7 +72,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.19.13
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved
---
apiVersion: skaffold/v4beta6
kind: Config
Expand Down Expand Up @@ -126,7 +126,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.21.13
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved
- name: go-1.20
patches:
- op: replace
Expand All @@ -136,7 +136,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.20.14
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved
- name: go-1.19
patches:
- op: replace
Expand All @@ -146,4 +146,4 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.19.13
GOLANG_VERSION: 1.23.1
wuhuizuo marked this conversation as resolved.
Show resolved Hide resolved