Skip to content

Commit 9304602

Browse files
committed
chore: update linter
1 parent b320085 commit 9304602

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
runs-on: ubuntu-latest
1414
env:
1515
GO_VERSION: stable
16-
GOLANGCI_LINT_VERSION: v1.54.2
16+
GOLANGCI_LINT_VERSION: v1.55.2
1717
CGO_ENABLED: 0
1818

1919
steps:
2020

2121
# https://github.com/marketplace/actions/checkout
2222
- name: Check out code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/go-cross.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
# https://github.com/marketplace/actions/checkout
2424
- name: Checkout code
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
# https://github.com/marketplace/actions/setup-go-environment
2828
- name: Set up Go ${{ matrix.go-version }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
# https://github.com/marketplace/actions/checkout
1818
- name: Check out code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222

@@ -28,9 +28,9 @@ jobs:
2828

2929
# https://goreleaser.com/ci/actions/
3030
- name: Run GoReleaser
31-
uses: goreleaser/goreleaser-action@v2
31+
uses: goreleaser/goreleaser-action@v5
3232
with:
3333
version: latest
34-
args: release --rm-dist
34+
args: release --clean
3535
env:
3636
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_REPO }}

ignore/glob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
// Matcher defines an interface for filematchers.
1111
type Matcher interface {
12-
Match(string) bool
12+
Match(arg string) bool
1313
True() bool
1414
MarshalText() ([]byte, error)
1515
}

0 commit comments

Comments
 (0)