Skip to content
This repository was archived by the owner on Mar 15, 2025. It is now read-only.

Commit f4ac311

Browse files
committed
chore: update dependecy, CI, and linter
1 parent ae52016 commit f4ac311

File tree

5 files changed

+24
-19
lines changed

5 files changed

+24
-19
lines changed

.github/workflows/go-cross.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
go-version: [ 1.19, 1.x ]
14+
go-version: [ oldstable, stable ]
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616

1717
steps:
1818
# https://github.com/marketplace/actions/checkout
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121

2222
# https://github.com/marketplace/actions/setup-go-environment
2323
- name: Set up Go ${{ matrix.go-version }}
24-
uses: actions/setup-go@v4
24+
uses: actions/setup-go@v5
2525
with:
2626
go-version: ${{ matrix.go-version }}
2727

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ jobs:
1212
name: Main Process
1313
runs-on: ubuntu-latest
1414
env:
15-
GO_VERSION: '1.20'
16-
GOLANGCI_LINT_VERSION: v1.53.3
15+
GO_VERSION: stable
16+
GOLANGCI_LINT_VERSION: v1.57.1
1717
CGO_ENABLED: 0
1818

1919
steps:
2020
# https://github.com/marketplace/actions/checkout
2121
- name: Check out code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525

2626
# https://github.com/marketplace/actions/setup-go-environment
2727
- name: Set up Go ${{ env.GO_VERSION }}
28-
uses: actions/setup-go@v4
28+
uses: actions/setup-go@v5
2929
with:
3030
go-version: ${{ env.GO_VERSION }}
3131

.golangci.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
run:
22
timeout: 7m
3-
skip-files: []
43

54
linters-settings:
65
govet:
7-
check-shadowing: true
6+
enable:
7+
- shadow
88
gocyclo:
99
min-complexity: 12
10-
maligned:
11-
suggest-new: true
1210
goconst:
1311
min-len: 3
1412
min-occurrences: 3
@@ -17,8 +15,6 @@ linters-settings:
1715
statements: 50
1816
misspell:
1917
locale: US
20-
ignore-words:
21-
- internetbs
2218
depguard:
2319
rules:
2420
main:
@@ -148,7 +144,7 @@ linters:
148144

149145
issues:
150146
exclude-use-default: false
151-
max-per-linter: 0
147+
max-issues-per-linter: 0
152148
max-same-issues: 0
153149
exclude:
154150
- 'Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv). is not checked'

go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
module github.com/golangci/modinfo
22

3-
go 1.20
3+
go 1.21
44

55
require (
6-
github.com/stretchr/testify v1.8.4
7-
golang.org/x/mod v0.11.0
8-
golang.org/x/tools v0.10.0
6+
github.com/stretchr/testify v1.9.0
7+
golang.org/x/mod v0.16.0
8+
golang.org/x/tools v0.19.0
99
)
1010

1111
require (
1212
github.com/davecgh/go-spew v1.1.1 // indirect
1313
github.com/pmezard/go-difflib v1.0.0 // indirect
14-
golang.org/x/sys v0.9.0 // indirect
14+
golang.org/x/sys v0.18.0 // indirect
1515
gopkg.in/yaml.v3 v3.0.1 // indirect
1616
)

go.sum

+9
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,22 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
44
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
55
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
66
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
7+
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
8+
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
79
golang.org/x/mod v0.11.0 h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU=
810
golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
11+
golang.org/x/mod v0.16.0 h1:QX4fJ0Rr5cPQCF7O9lh9Se4pmwfwskqZfq5moyldzic=
12+
golang.org/x/mod v0.16.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
913
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
1014
golang.org/x/sys v0.9.0 h1:KS/R3tvhPqvJvwcKfnBHJwwthS11LRhmM5D59eEXa0s=
1115
golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
16+
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
17+
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
1218
golang.org/x/tools v0.10.0 h1:tvDr/iQoUqNdohiYm0LmmKcBk+q86lb9EprIUFhHHGg=
1319
golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM=
20+
golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58=
21+
golang.org/x/tools v0.19.0 h1:tfGCXNR1OsFG+sVdLAitlpjAvD/I6dHDKnYrpEZUHkw=
22+
golang.org/x/tools v0.19.0/go.mod h1:qoJWxmGSIBmAeriMx19ogtrEPrGtDbPK634QFIcLAhc=
1423
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1524
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1625
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)