From d6e74172984dfb268e887ccb94d8f68c0c50dc49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:20:08 +0000 Subject: [PATCH] build(deps): bump golang from 1.23.4 to 1.23.5 (#1312) Bumps golang from 1.23.4 to 1.23.5. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index d68c2b442..9fead1eb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # download kubectl -FROM golang:1.23.4-alpine AS kubectl +FROM golang:1.23.5-alpine AS kubectl ARG KUBECTL_VERSION=1.32.1 RUN apk add --no-cache curl RUN export OS=$(go env GOOS) && \ @@ -8,7 +8,7 @@ RUN export OS=$(go env GOOS) && \ chmod +x /usr/local/bin/kubectl # build jsonnet-bundler -FROM golang:1.23.4-alpine AS jb +FROM golang:1.23.5-alpine AS jb WORKDIR /tmp RUN apk add --no-cache git make bash &&\ git clone https://github.com/jsonnet-bundler/jsonnet-bundler &&\ @@ -17,7 +17,7 @@ RUN apk add --no-cache git make bash &&\ make static &&\ mv _output/jb /usr/local/bin/jb -FROM golang:1.23.4-alpine AS helm +FROM golang:1.23.5-alpine AS helm WORKDIR /tmp/helm ARG HELM_VERSION=3.17.0 RUN apk add --no-cache jq curl @@ -26,7 +26,7 @@ RUN export OS=$(go env GOOS) && \ curl -SL "https://get.helm.sh/helm-v${HELM_VERSION}-${OS}-${ARCH}.tar.gz" > helm.tgz && \ tar -xvf helm.tgz --strip-components=1 -FROM golang:1.23.4-alpine AS kustomize +FROM golang:1.23.5-alpine AS kustomize WORKDIR /tmp/kustomize ARG KUSTOMIZE_VERSION=5.6.0 RUN apk add --no-cache jq curl @@ -36,7 +36,7 @@ RUN export OS=$(go env GOOS) &&\ curl -SL "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_${OS}_${ARCH}.tar.gz" > kustomize.tgz && \ tar -xvf kustomize.tgz -FROM golang:1.23.4 AS build +FROM golang:1.23.5 AS build WORKDIR /app COPY . . RUN make static