Skip to content

Commit

Permalink
chore(deps): update golang docker tag to v1.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 7, 2024
1 parent 15abef2 commit 5f779d3
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 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.6
ARG GOLANG_VERSION=1.22.0
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/cd/builders/skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value: &value-go1-21
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.21.6
GOLANG_VERSION: 1.22.0
- op: add
path: /build/artifacts/1/kaniko/buildArgs
value: *value-go1-21
Expand All @@ -88,7 +88,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value: &value-go1-20
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.20.13
GOLANG_VERSION: 1.22.0
- op: add
path: /build/artifacts/1/kaniko/buildArgs
value: *value-go1-20
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.6
ARG GOLANG_VERSION=1.22.0
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.6
ARG GOLANG_VERSION=1.22.0
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.6
ARG GOLANG_VERSION=1.22.0
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/utils/release/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21.6-alpine3.18 as gomplate_builder
FROM golang:1.22.0-alpine3.18 as gomplate_builder

RUN wget https://github.com/hairyhenderson/gomplate/archive/refs/heads/main.zip -O - | unzip - && cd gomplate-main && go build -o /usr/local/bin/gomplate ./cmd/gomplate

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.6
ARG GOLANG_VERSION=1.22.0
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.6
ARG GOLANG_VERSION=1.22.0
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
6 changes: 3 additions & 3 deletions dockerfiles/ci/skaffold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ profiles:
path: /build/artifacts/0/kaniko/buildArgs
value:
# renovate: datasource=docker depName=golang
GOLANG_VERSION: 1.21.6
GOLANG_VERSION: 1.22.0
- 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.11
GOLANG_VERSION: 1.22.0
- 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.22.0

0 comments on commit 5f779d3

Please sign in to comment.