Skip to content

Commit

Permalink
chore(deps): update golang docker tag to v1.21.11
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 5, 2024
1 parent dcc3884 commit 7ff3540
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
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 yum update --nogpgcheck -y && \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.10
ARG GOLANG_VERSION=1.21.11
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-21
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.21.10
GOLANG_VERSION: 1.21.11
- op: add
path: /build/artifacts/1/kaniko/buildArgs
value: *value-go1-21
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 @@ -17,7 +17,7 @@ RUN yum -y update && \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.10
ARG GOLANG_VERSION=1.21.11
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/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN yum update --nogpgcheck -y && \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.10
ARG GOLANG_VERSION=1.21.11
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 @@ -17,7 +17,7 @@ RUN yum update --nogpgcheck -y && \

# install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.10
ARG GOLANG_VERSION=1.21.11
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.10
ARG GOLANG_VERSION=1.21.11
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 @@ -48,7 +48,7 @@ RUN yum update --nogpgcheck -y && \

##### install golang toolchain
# renovate: datasource=docker depName=golang
ARG GOLANG_VERSION=1.21.10
ARG GOLANG_VERSION=1.21.11
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
4 changes: 2 additions & 2 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.10
GOLANG_VERSION: 1.21.11
- name: go-1.20
patches:
- op: replace
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.10
GOLANG_VERSION: 1.21.11
- name: go-1.20
patches:
- op: replace
Expand Down

0 comments on commit 7ff3540

Please sign in to comment.