Skip to content

Commit acb66bf

Browse files
author
Paulo Gomes
committed
build: Upgrade to Go 1.18
Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
1 parent 8165e27 commit acb66bf

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup Go
4444
uses: actions/setup-go@v3
4545
with:
46-
go-version: 1.17.x
46+
go-version: 1.18.x
4747
- name: Setup Kubernetes
4848
uses: engineerd/setup-kind@v0.5.0
4949
with:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG GO_VERSION=1.17
1+
ARG GO_VERSION=1.18
22
ARG XX_VERSION=1.1.0
33

44
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ api-docs: gen-crd-api-reference-docs
7777

7878
# Run go mod tidy
7979
tidy:
80-
cd api; rm -f go.sum; go mod tidy -compat=1.17
81-
rm -f go.sum; go mod tidy -compat=1.17
80+
cd api; rm -f go.sum; go mod tidy -compat=1.18
81+
rm -f go.sum; go mod tidy -compat=1.18
8282

8383
# Run go fmt against code
8484
fmt:

api/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fluxcd/helm-controller/api
22

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/fluxcd/pkg/apis/kustomize v0.4.1

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/fluxcd/helm-controller
22

3-
go 1.17
3+
go 1.18
44

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

0 commit comments

Comments
 (0)