File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
env :
15
15
GO_VERSION : stable
16
- GOLANGCI_LINT_VERSION : v1.54 .2
16
+ GOLANGCI_LINT_VERSION : v1.55 .2
17
17
CGO_ENABLED : 0
18
18
19
19
steps :
20
20
21
21
# https://github.com/marketplace/actions/checkout
22
22
- name : Check out code
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
with :
25
25
fetch-depth : 0
26
26
Original file line number Diff line number Diff line change 22
22
23
23
# https://github.com/marketplace/actions/checkout
24
24
- name : Checkout code
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
27
27
# https://github.com/marketplace/actions/setup-go-environment
28
28
- name : Set up Go ${{ matrix.go-version }}
Original file line number Diff line number Diff line change 16
16
17
17
# https://github.com/marketplace/actions/checkout
18
18
- name : Check out code
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
with :
21
21
fetch-depth : 0
22
22
28
28
29
29
# https://goreleaser.com/ci/actions/
30
30
- name : Run GoReleaser
31
- uses : goreleaser/goreleaser-action@v2
31
+ uses : goreleaser/goreleaser-action@v5
32
32
with :
33
33
version : latest
34
- args : release --rm-dist
34
+ args : release --clean
35
35
env :
36
36
GITHUB_TOKEN : ${{ secrets.GH_TOKEN_REPO }}
Original file line number Diff line number Diff line change 9
9
10
10
// Matcher defines an interface for filematchers.
11
11
type Matcher interface {
12
- Match (string ) bool
12
+ Match (arg string ) bool
13
13
True () bool
14
14
MarshalText () ([]byte , error )
15
15
}
You can’t perform that action at this time.
0 commit comments