Skip to content

Commit 77dda1e

Browse files
committed
chore: upgrade all tool dependencies
1 parent 104b3fb commit 77dda1e

File tree

3 files changed

+619
-165
lines changed

3 files changed

+619
-165
lines changed

.pre-commit-config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ default_stages: [commit]
33
exclude: ^tests/data/
44
repos:
55
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
6-
rev: v3.0.0
6+
rev: v5.0.0
77
hooks:
88
- id: commitlint
99
stages: [commit-msg]
1010
additional_dependencies: ["@commitlint/config-conventional"]
1111
- repo: https://github.com/pre-commit/pre-commit-hooks
12-
rev: v3.3.0
12+
rev: v4.0.1
1313
hooks:
1414
- id: check-json
1515
- id: check-merge-conflict
@@ -18,22 +18,22 @@ repos:
1818
- id: end-of-file-fixer
1919
- id: trailing-whitespace
2020
- repo: https://github.com/thlorenz/doctoc
21-
rev: v2.0.0
21+
rev: v2.0.1
2222
hooks:
2323
- id: doctoc
2424
args: [--notitle]
2525
exclude: ^(SUPPORT|\.github/ISSUE_TEMPLATE/)
2626
- repo: https://github.com/igorshubovych/markdownlint-cli
27-
rev: v0.25.0
27+
rev: v0.27.1
2828
hooks:
2929
- id: markdownlint
3030
exclude: >-
3131
^(docs/arch/adr-template\.md|\.github/ISSUE_TEMPLATE/|\.stentor\.d/)
3232
- repo: https://github.com/adrienverge/yamllint
33-
rev: v1.25.0
33+
rev: v1.26.1
3434
hooks:
3535
- id: yamllint
3636
- repo: https://github.com/golangci/golangci-lint
37-
rev: v1.33.0
37+
rev: v1.41.1
3838
hooks:
3939
- id: golangci-lint

tools/go.mod

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ go 1.15
55
require (
66
github.com/AlekSi/gocov-xml v0.0.0-20190121064608-3a14fb1c4737
77
github.com/axw/gocov v1.0.0
8-
github.com/golangci/golangci-lint v1.33.0
9-
github.com/goreleaser/goreleaser v0.149.0
8+
github.com/golangci/golangci-lint v1.41.1
9+
// v0.157.0 is the last release that can be built with go 1.15
10+
github.com/goreleaser/goreleaser v0.157.0
1011
github.com/wfscheper/stentor v0.2.3
11-
gotest.tools/gotestsum v0.6.0
12+
gotest.tools/gotestsum v1.6.4
1213
)

0 commit comments

Comments
 (0)