Upgrade to go 1.18
Signed-off-by: Philip Laine <philip.laine@gmail.com>
This commit is contained in:
parent
b7aa05ce66
commit
b47d468e8f
|
@ -45,7 +45,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.17
|
* Go >= 1.18
|
||||||
|
|
||||||
You can run the test suite by simply doing
|
You can run the test suite by simply doing
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
ARG BASE_VARIANT=alpine
|
ARG BASE_VARIANT=alpine
|
||||||
ARG GO_VERSION=1.17
|
ARG GO_VERSION=1.18
|
||||||
ARG XX_VERSION=1.1.2
|
ARG XX_VERSION=1.1.2
|
||||||
|
|
||||||
ARG LIBGIT2_IMG=ghcr.io/fluxcd/golang-with-libgit2-only
|
ARG LIBGIT2_IMG=ghcr.io/fluxcd/golang-with-libgit2-only
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -125,8 +125,8 @@ api-docs: gen-crd-api-reference-docs ## Generate API reference documentation
|
||||||
$(GEN_CRD_API_REFERENCE_DOCS) -api-dir=./api/v1beta2 -config=./hack/api-docs/config.json -template-dir=./hack/api-docs/template -out-file=./docs/api/source.md
|
$(GEN_CRD_API_REFERENCE_DOCS) -api-dir=./api/v1beta2 -config=./hack/api-docs/config.json -template-dir=./hack/api-docs/template -out-file=./docs/api/source.md
|
||||||
|
|
||||||
tidy: ## Run go mod tidy
|
tidy: ## Run go mod tidy
|
||||||
cd api; rm -f go.sum; go mod tidy -compat=1.17
|
cd api; rm -f go.sum; go mod tidy -compat=1.18
|
||||||
rm -f go.sum; go mod tidy -compat=1.17
|
rm -f go.sum; go mod tidy -compat=1.18
|
||||||
|
|
||||||
fmt: ## Run go fmt against code
|
fmt: ## Run go fmt against code
|
||||||
go fmt ./...
|
go fmt ./...
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/fluxcd/source-controller/api
|
module github.com/fluxcd/source-controller/api
|
||||||
|
|
||||||
go 1.17
|
go 1.18
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/fluxcd/pkg/apis/acl v0.0.3
|
github.com/fluxcd/pkg/apis/acl v0.0.3
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,6 +1,6 @@
|
||||||
module github.com/fluxcd/source-controller
|
module github.com/fluxcd/source-controller
|
||||||
|
|
||||||
go 1.17
|
go 1.18
|
||||||
|
|
||||||
replace github.com/fluxcd/source-controller/api => ./api
|
replace github.com/fluxcd/source-controller/api => ./api
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module github.com/fluxcd/source-controller/tests/fuzz
|
module github.com/fluxcd/source-controller/tests/fuzz
|
||||||
|
|
||||||
go 1.17
|
go 1.18
|
||||||
|
|
||||||
replace github.com/fluxcd/kustomize-controller/api => ../../api
|
replace github.com/fluxcd/kustomize-controller/api => ../../api
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue