File tree 3 files changed +14
-8
lines changed
3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 52
52
version :
53
53
- " "
54
54
- " latest"
55
- - " v1.51 "
56
- - " v1.51 .2"
55
+ - " v1.53 "
56
+ - " v1.53 .2"
57
57
runs-on : ${{ matrix.os }}
58
58
permissions :
59
59
contents : read
Original file line number Diff line number Diff line change @@ -97,3 +97,6 @@ typings/
97
97
98
98
# Text editor files
99
99
.vscode /
100
+
101
+ # IntelliJ/WebStorm files
102
+ .idea
Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ jobs:
41
41
- uses : actions/checkout@v3
42
42
- uses : actions/setup-go@v4
43
43
with :
44
- go-version : ' 1.17 '
44
+ go-version : ' 1.20 '
45
45
cache : false
46
46
- name : golangci-lint
47
47
uses : golangci/golangci-lint-action@v3
48
48
with :
49
- # Optional : version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
50
- version : v1.29
49
+ # Require : version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
50
+ version : v1.53
51
51
52
52
# Optional: working directory, useful for monorepos
53
53
# working-directory: somedir
89
89
- master
90
90
- main
91
91
pull_request :
92
+
92
93
permissions :
93
94
contents : read
94
95
# Optional: allow read access to pull request. Use with `only-new-issues` option.
95
96
# pull-requests: read
97
+
96
98
jobs :
97
99
golangci :
98
100
strategy :
99
101
matrix :
100
- go : [1.17 ]
102
+ go : ['1.20' ]
101
103
os : [macos-latest, windows-latest]
102
104
name : lint
103
105
runs-on : ${{ matrix.os }}
@@ -110,8 +112,9 @@ jobs:
110
112
- name : golangci-lint
111
113
uses : golangci/golangci-lint-action@v3
112
114
with :
113
- # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
114
- version : v1.29
115
+ # Require: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
116
+ version : v1.53
117
+
115
118
# Optional: working directory, useful for monorepos
116
119
# working-directory: somedir
117
120
You can’t perform that action at this time.
0 commit comments