File tree Expand file tree Collapse file tree 4 files changed +41
-28
lines changed
Expand file tree Collapse file tree 4 files changed +41
-28
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,12 @@ jobs:
1212 - name : Set up Go
1313 uses : actions/setup-go@v5
1414 with :
15- go-version : ' 1.23 '
15+ go-version : ' 1.24 '
1616 cache : false
1717 - name : golangci-lint
18- uses : golangci/golangci-lint-action@v6
18+ uses : golangci/golangci-lint-action@v8
1919 with :
20- version : v1.60.3
20+ version : v2.1.6
2121 args : --timeout=5m
2222
2323 test :
3030 - name : Install Go
3131 uses : actions/setup-go@v5
3232 with :
33- go-version : 1.23 .x
33+ go-version : 1.24 .x
3434
3535 - name : Golang tests
3636 env :
Original file line number Diff line number Diff line change 1+ version : " 2"
12linters :
23 enable :
3- - goconst
4- - gocritic
5- - gofmt
6- - govet
7- - prealloc
8- - unconvert
9- - unused
10- - errcheck
11- - ineffassign
124 - containedctx
13- - tenv
14- - musttag
15- - mirror
16- - tagalign
17- - zerologlint
185 - copyloopvar
6+ - goconst
7+ - gocritic
198 - gosec
9+ - makezero
10+ - mirror
2011 - misspell
12+ - musttag
2113 - noctx
2214 - prealloc
2315 - protogetter
24- - makezero
25- linters-settings :
26- gosec :
27- excludes :
28- - G115
16+ - tagalign
17+ - unconvert
18+ - usetesting
19+ - zerologlint
20+ settings :
21+ gosec :
22+ excludes :
23+ - G115
24+ exclusions :
25+ generated : lax
26+ presets :
27+ - comments
28+ - common-false-positives
29+ - legacy
30+ - std-error-handling
31+ paths :
32+ - third_party$
33+ - builtin$
34+ - examples$
35+ formatters :
36+ enable :
37+ - gofmt
38+ exclusions :
39+ generated : lax
40+ paths :
41+ - third_party$
42+ - builtin$
43+ - examples$
Original file line number Diff line number Diff line change 11module github.com/celenium-io/celestial-module
22
3- go 1.23.2
3+ go 1.24.4
44
55replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
66
Original file line number Diff line number Diff line change @@ -171,10 +171,8 @@ func (m *Module) sync(ctx context.Context) error {
171171 }
172172 addressId , err := m .addressHandler (ctx , changes .Changes [i ].Address )
173173 if err != nil {
174- if status == storage .StatusNOTVERIFIED {
175- continue
176- }
177- return errors .Wrap (err , "address handler" )
174+ m .Log .Err (err ).Msg ("address handler" )
175+ continue
178176 }
179177
180178 if status == storage .StatusPRIMARY {
You can’t perform that action at this time.
0 commit comments