File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed
pkg/plugins/hybrid/v1alpha/scaffolds/internal/templates
testdata/hybrid/memcached-operator Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1717 - name : Set up Go
1818 uses : actions/setup-go@v3
1919 with :
20- go-version : ~1.19
20+ go-version : ~1.20
2121 id : go
2222
2323 - name : Check out code into the Go module directory
5656 - name : Set up Go
5757 uses : actions/setup-go@v3
5858 with :
59- go-version : ~1.19
59+ go-version : ~1.20
6060 id : go
6161
6262 - name : Check out code into the Go module directory
7676 - name : Set up Go
7777 uses : actions/setup-go@v3
7878 with :
79- go-version : ~1.19
79+ go-version : ~1.20
8080 id : go
8181
8282 - name : Check out code into the Go module directory
Original file line number Diff line number Diff line change 2828 - name : Install Go
2929 uses : actions/setup-go@v3
3030 with :
31- go-version : ~1.19
31+ go-version : ~1.20
3232
3333 - name : Create release
3434 run : |
Original file line number Diff line number Diff line change 11# Build the manager binary
2- FROM --platform=$BUILDPLATFORM golang:1.19 as builder
2+ FROM --platform=$BUILDPLATFORM golang:1.20 as builder
33ARG TARGETOS
44ARG TARGETARCH
55
Original file line number Diff line number Diff line change 11module github.com/operator-framework/helm-operator-plugins
22
3- go 1.19
3+ go 1.20
44
55require (
66 github.com/blang/semver/v4 v4.0.0
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ func (f *Dockerfile) SetTemplateDefaults() error {
4141// `api/` and `controller/` they would have to be added.
4242
4343const dockerfileTemplate = `# Build the manager binary
44- FROM golang:1.19 as builder
44+ FROM golang:1.20 as builder
4545
4646WORKDIR /workspace
4747# Copy the Go Modules manifests
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ func (f *GoMod) SetTemplateDefaults() error {
4646const goModTemplate = `
4747module {{ .Repo }}
4848
49- go 1.19
49+ go 1.20
5050
5151require (
5252 sigs.k8s.io/controller-runtime {{ .ControllerRuntimeVersion }}
Original file line number Diff line number Diff line change 11# Build the manager binary
2- FROM golang:1.19 as builder
2+ FROM golang:1.20 as builder
33
44WORKDIR /workspace
55# Copy the Go Modules manifests
Original file line number Diff line number Diff line change 11module github.com/example/memcached-operator
22
3- go 1.19
3+ go 1.20
44
55require (
66 github.com/onsi/ginkgo/v2 v2.9.5
You can’t perform that action at this time.
0 commit comments