Skip to content

Commit 7cd12d3

Browse files
dependabot[bot]yec-akamaizliang-akamai
authored
build(deps): bump crazy-max/ghaction-github-labeler from 5.2.0 to 5.3.0 (#94)
* build(deps): bump crazy-max/ghaction-github-labeler from 5.2.0 to 5.3.0 Bumps [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler) from 5.2.0 to 5.3.0. - [Release notes](https://github.com/crazy-max/ghaction-github-labeler/releases) - [Commits](crazy-max/ghaction-github-labeler@31674a3...24d110a) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-labeler dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * golangci migrate --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ye Chen <[email protected]> Co-authored-by: Zhiwei Liang <[email protected]>
1 parent 3b157d9 commit 7cd12d3

File tree

2 files changed

+36
-22
lines changed

2 files changed

+36
-22
lines changed

.github/workflows/labeler.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/checkout@v4
2222
-
2323
name: Run Labeler
24-
uses: crazy-max/ghaction-github-labeler@31674a3852a9074f2086abcf1c53839d466a47e7
24+
uses: crazy-max/ghaction-github-labeler@24d110aa46a59976b8a7f35518cb7f14f434c916
2525
with:
2626
github-token: ${{ secrets.GITHUB_TOKEN }}
2727
yaml-file: .github/labels.yml

.golangci.yml

+35-21
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,41 @@
1+
version: "2"
12
run:
23
tests: false
3-
timeout: 10m
4-
5-
linters-settings:
6-
revive:
7-
rules:
8-
- name: unused-parameter
9-
severity: warning
10-
disabled: true
11-
12-
gomoddirectives:
13-
replace-allow-list:
14-
- github.com/linode/linodego
15-
16-
govet:
17-
disable:
18-
- shadow
19-
dupl:
20-
threshold: 100
21-
224
linters:
23-
fast: false
5+
enable:
6+
- gosec
7+
settings:
8+
dupl:
9+
threshold: 100
10+
gomoddirectives:
11+
replace-allow-list:
12+
- github.com/linode/linodego
13+
govet:
14+
disable:
15+
- shadow
16+
revive:
17+
rules:
18+
- name: unused-parameter
19+
severity: warning
20+
disabled: true
21+
exclusions:
22+
generated: lax
23+
presets:
24+
- comments
25+
- common-false-positives
26+
- legacy
27+
- std-error-handling
28+
paths:
29+
- third_party$
30+
- builtin$
31+
- examples$
32+
formatters:
2433
enable:
2534
- gofumpt
2635
- goimports
27-
- gosec
36+
exclusions:
37+
generated: lax
38+
paths:
39+
- third_party$
40+
- builtin$
41+
- examples$

0 commit comments

Comments
 (0)