File tree 6 files changed +16
-16
lines changed
6 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 9
9
10
10
env :
11
11
# Common versions
12
- GO_VERSION : ' 1.22 '
13
- GO_REQUIRED_MIN_VERSION : ' '
12
+ GO_VERSION : " 1.23 "
13
+ GO_REQUIRED_MIN_VERSION : " "
14
14
15
15
jobs :
16
16
images :
17
17
name : images
18
18
runs-on : ubuntu-latest
19
19
strategy :
20
20
matrix :
21
- arch : [ amd64, arm64 ]
21
+ arch : [amd64, arm64]
22
22
steps :
23
23
- name : checkout code
24
24
uses : actions/checkout@v4
44
44
image-manifest :
45
45
name : image manifest
46
46
runs-on : ubuntu-latest
47
- needs : [ images ]
47
+ needs : [images]
48
48
steps :
49
49
- name : checkout code
50
50
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 13
13
14
14
env :
15
15
# Common versions
16
- GO_VERSION : " 1.22 "
16
+ GO_VERSION : " 1.23 "
17
17
GO_REQUIRED_MIN_VERSION : " "
18
18
19
19
jobs :
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ name: GoRelease
3
3
on :
4
4
push :
5
5
tags :
6
- - ' v*.*.*'
6
+ - " v*.*.*"
7
7
env :
8
8
# Common versions
9
- GO_VERSION : ' 1.22 '
10
- GO_REQUIRED_MIN_VERSION : ' '
9
+ GO_VERSION : " 1.23 "
10
+ GO_REQUIRED_MIN_VERSION : " "
11
11
GITHUB_REF : ${{ github.ref }}
12
- CHART_NAME : ' cluster-proxy'
12
+ CHART_NAME : " cluster-proxy"
13
13
14
14
jobs :
15
15
env :
@@ -37,10 +37,10 @@ jobs:
37
37
images :
38
38
name : images
39
39
runs-on : ubuntu-latest
40
- needs : [ env ]
40
+ needs : [env]
41
41
strategy :
42
42
matrix :
43
- arch : [ amd64, arm64 ]
43
+ arch : [amd64, arm64]
44
44
steps :
45
45
- name : checkout code
46
46
uses : actions/checkout@v4
66
66
image-manifest :
67
67
name : image manifest
68
68
runs-on : ubuntu-latest
69
- needs : [ env, images ]
69
+ needs : [env, images]
70
70
steps :
71
71
- name : checkout code
72
72
uses : actions/checkout@v4
90
90
release :
91
91
name : release
92
92
runs-on : ubuntu-latest
93
- needs : [ env, image-manifest ]
93
+ needs : [env, image-manifest]
94
94
steps :
95
95
- name : checkout code
96
96
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ vet: ## Run go vet against code.
57
57
go vet ./...
58
58
59
59
golint :
60
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.54.1
60
+ go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.8
61
61
golangci-lint run --timeout=3m ./...
62
62
63
63
verify : fmt vet golint
Original file line number Diff line number Diff line change 1
1
# Build the manager binary
2
- FROM golang:1.22 as builder
2
+ FROM golang:1.23 as builder
3
3
4
4
WORKDIR /workspace
5
5
Original file line number Diff line number Diff line change 1
1
module open-cluster-management.io/cluster-proxy
2
2
3
- go 1.22.0
3
+ go 1.23.6
4
4
5
5
require (
6
6
github.com/onsi/ginkgo/v2 v2.17.1
You can’t perform that action at this time.
0 commit comments