Align go.mod version with Kubernetes (Go 1.20)
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
parent
60090cc288
commit
baf3150a6c
|
@ -24,7 +24,7 @@ If any of the above dependencies are not present on your system, the first invoc
|
||||||
## How to run the test suite
|
## How to run the test suite
|
||||||
|
|
||||||
Prerequisites:
|
Prerequisites:
|
||||||
* Go >= 1.18
|
* Go >= 1.20
|
||||||
|
|
||||||
You can run the test suite by simply doing
|
You can run the test suite by simply doing
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/fluxcd/helm-controller/api
|
module github.com/fluxcd/helm-controller/api
|
||||||
|
|
||||||
go 1.18
|
go 1.20
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/fluxcd/pkg/apis/kustomize v1.1.0
|
github.com/fluxcd/pkg/apis/kustomize v1.1.0
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
||||||
module github.com/fluxcd/helm-controller
|
module github.com/fluxcd/helm-controller
|
||||||
|
|
||||||
go 1.18
|
go 1.20
|
||||||
|
|
||||||
replace github.com/fluxcd/helm-controller/api => ./api
|
replace github.com/fluxcd/helm-controller/api => ./api
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
FROM gcr.io/oss-fuzz-base/base-builder-go
|
FROM gcr.io/oss-fuzz-base/base-builder-go
|
||||||
|
|
||||||
|
RUN wget https://go.dev/dl/go1.20.5.linux-amd64.tar.gz \
|
||||||
|
&& mkdir temp-go \
|
||||||
|
&& rm -rf /root/.go/* \
|
||||||
|
&& tar -C temp-go/ -xzf go1.20.5.linux-amd64.tar.gz \
|
||||||
|
&& mv temp-go/go/* /root/.go/
|
||||||
|
|
||||||
ENV SRC=$GOPATH/src/github.com/fluxcd/helm-controller
|
ENV SRC=$GOPATH/src/github.com/fluxcd/helm-controller
|
||||||
ENV FLUX_CI=true
|
ENV FLUX_CI=true
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue