File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -51,10 +51,12 @@ jobs:
51
51
with :
52
52
go-version : ${{ inputs.go-version }}
53
53
- run : go env
54
+ - name : Set golangci-lint version
55
+ run : echo "GOLANGCI_LINT_VERSION=$(make --no-print-directory print-GOLANGCI_LINT_VERSION)" >> $GITHUB_ENV
54
56
- name : lint-${{ matrix.directory }}
55
57
uses : golangci/golangci-lint-action@639cd343e1d3b897ff35927a75193d57cfcba299 # v3.6.0
56
58
with :
57
59
working-directory : ${{ matrix.directory }}
58
- version : v1.51.1
60
+ version : ${{ env.GOLANGCI_LINT_VERSION }}
59
61
args : --build-tags="${{ env.GOTAGS }}" -v
60
62
skip-cache : true
Original file line number Diff line number Diff line change 1
- 1.20.12
1
+ 1.21.5
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ GO_MODULES := $(shell find . -name go.mod -exec dirname {} \; | grep -v "proto-g
10
10
# These version variables can either be a valid string for "go install <module>@<version>"
11
11
# or the string @DEV to imply use what is currently installed locally.
12
12
# ##
13
- GOLANGCI_LINT_VERSION ='v1.51.1 '
13
+ GOLANGCI_LINT_VERSION ='v1.55.2 '
14
14
MOCKERY_VERSION ='v2.37.1'
15
15
BUF_VERSION ='v1.26.0'
16
16
You can’t perform that action at this time.
0 commit comments