Skip to content

Commit 82810c4

Browse files
bors[bot]zegl
andauthored
Merge #387
387: Upgrade Go, Alpine, and Helm dependencies r=zegl a=zegl <!-- Optional: Add this change to the release notes by adding a RELNOTE comment If this shouldn't appear in the notes, simply remove this. --> ``` RELNOTE: Upgrade alpine to 3.14.2. Upgrade Go to 1.17. Upgrade Helm 2 to v2.17.0. Upgrade Helm 3 to v3.6.3. ``` Co-authored-by: Gustav Westling <[email protected]>
2 parents 7c1d27d + e1e77f5 commit 82810c4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
test:
44
docker:
5-
- image: circleci/golang:1.15
5+
- image: circleci/golang:1.17
66
working_directory: /go/app
77
steps:
88
- checkout

cmd/kube-score/helm.Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stretch as downloader
22

3-
ARG HELM_VERSION=v2.14.3
4-
ARG HELM_SHA256SUM="38614a665859c0f01c9c1d84fa9a5027364f936814d1e47839b05327e400bf55"
3+
ARG HELM_VERSION=v2.17.0
4+
ARG HELM_SHA256SUM="f3bec3c7c55f6a9eb9e6586b8c503f370af92fe987fcbf741f37707606d70296"
55

66
RUN apt-get update && \
77
apt-get install -y curl && \
@@ -10,7 +10,7 @@ RUN apt-get update && \
1010
tar xzvf helm.tar.gz && \
1111
chmod +x /linux-amd64/helm
1212

13-
FROM alpine:3.10.1
13+
FROM alpine:3.14.2
1414
RUN apk update && \
1515
apk upgrade && \
1616
apk add bash ca-certificates

cmd/kube-score/helm3.Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stretch as downloader
22

3-
ARG HELM_VERSION=v3.5.0
4-
ARG HELM_SHA256SUM="3fff0354d5fba4c73ebd5db59a59db72f8a5bbe1117a0b355b0c2983e98db95b"
3+
ARG HELM_VERSION=v3.6.3
4+
ARG HELM_SHA256SUM="07c100849925623dc1913209cd1a30f0a9b80a5b4d6ff2153c609d11b043e262"
55

66
RUN apt-get update && \
77
apt-get install -y curl && \
@@ -10,7 +10,7 @@ RUN apt-get update && \
1010
tar xzvf helm.tar.gz && \
1111
chmod +x /linux-amd64/helm
1212

13-
FROM alpine:3.10.1
13+
FROM alpine:3.14.2
1414
RUN apk update && \
1515
apk upgrade && \
1616
apk add bash ca-certificates

0 commit comments

Comments
 (0)