Skip to content

Commit 486c8c5

Browse files
committed
.github: Version updates
1 parent 3eaaecc commit 486c8c5

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
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

1515
jobs:
1616
skip-check:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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

.golangci.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,17 @@ issues:
4444

4545
linters-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:

0 commit comments

Comments
 (0)