File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 88 workflow_dispatch :
99env :
1010 GOLANGCI_LINT_VERSION : v1.60.3
11+ GO_VERSION : ' 1.23'
1112jobs :
1213 golangci :
1314 if : (!contains(github.event.pull_request.labels.*.name, 'no lint'))
1718 cancel-in-progress : true
1819 runs-on : ubuntu-latest
1920 steps :
21+ - uses : actions/setup-go@v5
22+ with :
23+ go-version : ${{ env.GO_VERSION }}
2024 - uses : actions/checkout@v4
2125 - name : golangci-lint
2226 uses : golangci/golangci-lint-action@v4
3034 cancel-in-progress : true
3135 runs-on : ubuntu-latest
3236 steps :
37+ - uses : actions/setup-go@v5
38+ with :
39+ go-version : ${{ env.GO_VERSION }}
3340 - uses : actions/checkout@v4
3441 - name : generate examples golangci-lint config
3542 run : ./.github/scripts/golangci-lint-gen-configs.sh
4754 cancel-in-progress : true
4855 runs-on : ubuntu-latest
4956 steps :
57+ - uses : actions/setup-go@v5
58+ with :
59+ go-version : ${{ env.GO_VERSION }}
5060 - uses : actions/checkout@v4
5161 - name : generate slo golangci-lint config
5262 run : ./.github/scripts/golangci-lint-gen-configs.sh
You can’t perform that action at this time.
0 commit comments