File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 20
20
- name : Setup Go
21
21
uses : actions/setup-go@v3
22
22
with :
23
- go-version : 1.19 .x
23
+ go-version : 1.20 .x
24
24
- id : go-env
25
25
run : |
26
26
echo "go-mod-cache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 23
23
- name : Setup Go
24
24
uses : actions/setup-go@v3
25
25
with :
26
- go-version : 1.19 .x
26
+ go-version : 1.20 .x
27
27
- name : Restore Go cache
28
28
uses : actions/cache@v3
29
29
with :
62
62
- name : Setup Go
63
63
uses : actions/setup-go@v3
64
64
with :
65
- go-version : 1.19 .x
65
+ go-version : 1.20 .x
66
66
- name : Enable integration tests
67
67
# Only run integration tests for main branch
68
68
if : github.ref == 'refs/heads/main'
Original file line number Diff line number Diff line change 34
34
- name : Set up Go
35
35
uses : actions/setup-go@v2
36
36
with :
37
- go-version : 1.19 .x
37
+ go-version : 1.20 .x
38
38
- name : Initialize CodeQL
39
39
uses : github/codeql-action/init@v2
40
40
with :
Original file line number Diff line number Diff line change 24
24
- name : Setup Go
25
25
uses : actions/setup-go@v3
26
26
with :
27
- go-version : 1.19 .x
27
+ go-version : 1.20 .x
28
28
- name : Restore Go cache
29
29
uses : actions/cache@v3
30
30
with :
49
49
- name : Setup Go
50
50
uses : actions/setup-go@v3
51
51
with :
52
- go-version : 1.19 .x
52
+ go-version : 1.20 .x
53
53
- name : Run tests
54
54
env :
55
55
SKIP_COSIGN_VERIFICATION : true
80
80
- name : Setup Go
81
81
uses : actions/setup-go@v3
82
82
with :
83
- go-version : 1.19 .x
83
+ go-version : 1.20 .x
84
84
- name : Restore Go cache
85
85
uses : actions/cache@v3
86
86
with :
Original file line number Diff line number Diff line change 24
24
- name : Setup Go
25
25
uses : actions/setup-go@v3
26
26
with :
27
- go-version : 1.19 .x
27
+ go-version : 1.20 .x
28
28
- name : Restore Go cache
29
29
uses : actions/cache@v3
30
30
with :
Original file line number Diff line number Diff line change 1
1
ARG BASE_VARIANT=alpine
2
- ARG GO_VERSION=1.19
2
+ ARG GO_VERSION=1.20
3
3
ARG XX_VERSION=1.1.2
4
4
5
5
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
Original file line number Diff line number Diff line change @@ -120,8 +120,8 @@ api-docs: gen-crd-api-reference-docs ## Generate API reference documentation
120
120
$(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
121
121
122
122
tidy : # # Run go mod tidy
123
- cd api; rm -f go.sum; go mod tidy -compat=1.19
124
- rm -f go.sum; go mod tidy -compat=1.19
123
+ cd api; rm -f go.sum; go mod tidy -compat=1.20
124
+ rm -f go.sum; go mod tidy -compat=1.20
125
125
126
126
fmt : # # Run go fmt against code
127
127
go fmt ./...
You can’t perform that action at this time.
0 commit comments