Skip to content

Commit

Permalink
Merge pull request #900 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 committed Jun 27, 2023
2 parents 129c898 + fb44cf5 commit b4d2838
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
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/kustomize-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/kustomize-controller

go 1.18
go 1.20

replace github.com/fluxcd/kustomize-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/kustomize-controller
ENV FLUX_CI=true

Expand Down

0 comments on commit b4d2838

Please sign in to comment.