Skip to content

Commit

Permalink
Merge pull request #715 from fluxcd/go.mod-1.20
Browse files Browse the repository at this point in the history
Align `go.mod` version with Kubernetes (Go 1.20)
  • Loading branch information
stefanprodan authored Jun 27, 2023
2 parents 60090cc + baf3150 commit c23b145
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Prerequisites:
* Go >= 1.18
* Go >= 1.20

You can run the test suite by simply doing

Expand Down
2 changes: 1 addition & 1 deletion api/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fluxcd/helm-controller/api

go 1.18
go 1.20

require (
github.com/fluxcd/pkg/apis/kustomize v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/fluxcd/helm-controller

go 1.18
go 1.20

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

Expand Down
6 changes: 6 additions & 0 deletions tests/fuzz/Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
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 FLUX_CI=true

Expand Down

0 comments on commit c23b145

Please sign in to comment.