Skip to content

Commit 7f18b87

Browse files
build(deps): bump golang from 1.23.3 to 1.23.4 (#1266)
Bumps golang from 1.23.3 to 1.23.4. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent b9f4911 commit 7f18b87

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# download kubectl
2-
FROM golang:1.23.3-alpine AS kubectl
2+
FROM golang:1.23.4-alpine AS kubectl
33
ARG KUBECTL_VERSION=1.31.3
44
RUN apk add --no-cache curl
55
RUN export OS=$(go env GOOS) && \
@@ -8,7 +8,7 @@ RUN export OS=$(go env GOOS) && \
88
chmod +x /usr/local/bin/kubectl
99

1010
# build jsonnet-bundler
11-
FROM golang:1.23.3-alpine AS jb
11+
FROM golang:1.23.4-alpine AS jb
1212
WORKDIR /tmp
1313
RUN apk add --no-cache git make bash &&\
1414
git clone https://github.com/jsonnet-bundler/jsonnet-bundler &&\
@@ -17,7 +17,7 @@ RUN apk add --no-cache git make bash &&\
1717
make static &&\
1818
mv _output/jb /usr/local/bin/jb
1919

20-
FROM golang:1.23.3-alpine AS helm
20+
FROM golang:1.23.4-alpine AS helm
2121
WORKDIR /tmp/helm
2222
ARG HELM_VERSION=3.16.3
2323
RUN apk add --no-cache jq curl
@@ -26,7 +26,7 @@ RUN export OS=$(go env GOOS) && \
2626
curl -SL "https://get.helm.sh/helm-v${HELM_VERSION}-${OS}-${ARCH}.tar.gz" > helm.tgz && \
2727
tar -xvf helm.tgz --strip-components=1
2828

29-
FROM golang:1.23.3-alpine AS kustomize
29+
FROM golang:1.23.4-alpine AS kustomize
3030
WORKDIR /tmp/kustomize
3131
ARG KUSTOMIZE_VERSION=5.5.0
3232
RUN apk add --no-cache jq curl
@@ -36,7 +36,7 @@ RUN export OS=$(go env GOOS) &&\
3636
curl -SL "https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v${KUSTOMIZE_VERSION}/kustomize_v${KUSTOMIZE_VERSION}_${OS}_${ARCH}.tar.gz" > kustomize.tgz && \
3737
tar -xvf kustomize.tgz
3838

39-
FROM golang:1.23.3 AS build
39+
FROM golang:1.23.4 AS build
4040
WORKDIR /app
4141
COPY . .
4242
RUN make static

0 commit comments

Comments
 (0)