File tree Expand file tree Collapse file tree 5 files changed +9
-8
lines changed
Expand file tree Collapse file tree 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 3232
3333 - uses : " actions/setup-go@v5"
3434 with :
35- go-version : " 1.22 "
35+ go-version : " 1.23 "
3636
3737 - name : " Write go.list file"
3838 run : " go list -buildvcs=false -deps -json ./... > go.list"
5959 - " 1.20"
6060 - " 1.21"
6161 - " 1.22"
62+ - " 1.23"
6263 steps :
6364 - uses : " actions/checkout@v4"
6465
Original file line number Diff line number Diff line change 1818
1919 - uses : " actions/setup-go@v5"
2020 with :
21- go-version : " 1.22 "
21+ go-version : " 1.23 "
2222
2323 - name : " Write go.list file"
2424 run : " go list -buildvcs=false -deps -json ./... > go.list"
Original file line number Diff line number Diff line change 11# see: https://golangci-lint.run/usage/configuration/
22run :
3- go : " 1.22 "
3+ go : " 1.23 "
44
55output :
66 sort-results : true
@@ -39,8 +39,7 @@ linters:
3939 - " depguard"
4040 - " varnamelen"
4141 # ---- deprecated ---- #
42- - " execinquery"
43- - " gomnd"
42+ - " exportloopref"
4443 # -------------------- #
4544 enable-all : true
4645 fast : false
Original file line number Diff line number Diff line change 2020 " depguard" ,
2121 " dupl" ,
2222 " execinquery" ,
23+ " exportloopref" ,
2324 " funlen" ,
2425 " gocognit" ,
2526 " gocyclo" ,
Original file line number Diff line number Diff line change @@ -31,11 +31,11 @@ nancy:
3131
3232.PHONY : release
3333release :
34- if [ " $( tag ) " = " " ]; then \
35- echo " tag name is required." ; \
34+ if [ " $( version ) " = " " ]; then \
35+ echo " version is required." ; \
3636 exit 1; \
3737 fi \
38- && gh release create $(tag ) --generate-notes --target master
38+ && gh release create $(version ) --generate-notes --target master
3939
4040.PHONY : spell-check
4141spell-check :
You can’t perform that action at this time.
0 commit comments