File tree Expand file tree Collapse file tree 3 files changed +15
-11
lines changed
Expand file tree Collapse file tree 3 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 1010 # renovate: datasource=go depName=mvdan.cc/gofumpt
1111 GOFUMPT_VERSION : v0.3.1
1212 # renovate: datasource=go depName=github.com/golangci/golangci-lint
13- GOLANGCI_LINT_VERSION : v1.50.1
13+ GOLANGCI_LINT_VERSION : v1.53.3
1414
1515jobs :
1616 skip-check :
Original file line number Diff line number Diff line change 1818 runs-on : ubuntu-latest
1919 if : startsWith(github.ref, 'refs/tags/')
2020 container :
21- image : docker.io/goreleaser/goreleaser-cross:v1.18.3
21+ image : docker.io/goreleaser/goreleaser-cross:v1.20.6
2222 options : --privileged
2323 env :
2424 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -55,11 +55,11 @@ jobs:
5555 needs : binaries
5656 steps :
5757 - uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
58-
58+
5959 - name : Publish Vercel
6060 run : |
6161 curl -X POST "https://api.vercel.com/v1/integrations/deploy/${{ secrets.VERCEL_WEBHOOK }}"
62-
62+
6363 container :
6464 name : Build and release container images
6565 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -44,13 +44,17 @@ issues:
4444
4545linters-settings :
4646 depguard :
47- list-type : blacklist
48- include-go-root : true
49- packages-with-error-message :
50- - sync/atomic : " Use go.uber.org/atomic instead of sync/atomic"
51- - github.com/stretchr/testify/assert : " Use github.com/stretchr/testify/require instead of github.com/stretchr/testify/assert"
52- - github.com/go-kit/kit/log : " Use github.com/go-kit/log instead of github.com/go-kit/kit/log"
53- - github.com/pkg/errors : " Use fmt.Errorf instead"
47+ rules :
48+ Main :
49+ deny :
50+ - pkg : sync/atomic
51+ desc : Use go.uber.org/atomic instead of sync/atomic
52+ - pkg : github.com/stretchr/testify/assert
53+ desc : Use github.com/stretchr/testify/require instead of github.com/stretchr/testify/assert
54+ - pkg : github.com/go-kit/kit/log
55+ desc : Use github.com/go-kit/log instead of github.com/go-kit/kit/log
56+ - pkg : github.com/pkg/errors
57+ desc : Use fmt.Errorf instead
5458 errcheck :
5559 exclude : ./.errcheck_excludes.txt
5660 goimports :
You can’t perform that action at this time.
0 commit comments