File tree 3 files changed +9
-7
lines changed
config/controller_install_release
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -11,25 +11,27 @@ jobs:
11
11
build :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v2
15
14
16
15
- name : Set up Go
17
- uses : actions/setup-go@v2
16
+ uses : actions/setup-go@v3
18
17
with :
19
18
go-version : 1.17
20
19
20
+ - name : checkout
21
+ uses : actions/checkout@v3
22
+
21
23
- name : Unit tests
22
24
run : make test
23
25
24
26
- name : Upload code coverage
25
- uses : codecov/codecov-action@v2
27
+ uses : codecov/codecov-action@v3
26
28
with :
27
29
files : cover.out
28
30
29
31
- name : golangci-lint
30
- uses : golangci/golangci-lint-action@v2
32
+ uses : golangci/golangci-lint-action@v3
31
33
with :
32
- version : v1.43
34
+ version : v1.45.2
33
35
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
34
36
skip-pkg-cache : true
35
37
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
Original file line number Diff line number Diff line change 62
62
63
63
golangci-lint : # # Download golangci-lint
64
64
@mkdir -p $(shell pwd) /bin
65
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell pwd) /bin v1.43.0
65
+ curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell pwd) /bin v1.45.2
66
66
67
67
.PHONY : lint
68
68
lint : golangci-lint # # Run linter
Original file line number Diff line number Diff line change 4
4
images :
5
5
- name : controller
6
6
newName : ghcr.io/aws/aws-cloud-map-mcs-controller-for-k8s
7
- newTag : v0.2.2
7
+ newTag : v0.2.3
You can’t perform that action at this time.
0 commit comments