Skip to content

Commit 6a95e10

Browse files
committed
Align go.mod version with Kubernetes (Go 1.20)
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
1 parent 60090cc commit 6a95e10

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

api/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fluxcd/helm-controller/api
22

3-
go 1.18
3+
go 1.20
44

55
require (
66
github.com/fluxcd/pkg/apis/kustomize v1.1.0

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fluxcd/helm-controller
22

3-
go 1.18
3+
go 1.20
44

55
replace github.com/fluxcd/helm-controller/api => ./api
66

tests/fuzz/Dockerfile.builder

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
FROM gcr.io/oss-fuzz-base/base-builder-go
22

3+
RUN wget https://go.dev/dl/go1.20.5.linux-amd64.tar.gz \
4+
&& mkdir temp-go \
5+
&& rm -rf /root/.go/* \
6+
&& tar -C temp-go/ -xzf go1.20.5.linux-amd64.tar.gz \
7+
&& mv temp-go/go/* /root/.go/
8+
39
ENV SRC=$GOPATH/src/github.com/fluxcd/helm-controller
410
ENV FLUX_CI=true
511

0 commit comments

Comments
 (0)