chore; bump go 1.20

main
sudo pacman -Syu 2023-02-21 16:59:05 +07:00
parent cdf7a6cae6
commit bb7b5a789f
3 changed files with 14 additions and 13 deletions

View File

@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: "1.19" go-version: "1.20"
check-latest: true check-latest: true
cache: true cache: true
- run: go test -race -failfast . - run: go test -race -failfast .
@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: "1.19" go-version: "1.20"
check-latest: true check-latest: true
cache: true cache: true
- run: go build - run: go build
@ -43,7 +43,7 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: "1.19" go-version: "1.20"
check-latest: true check-latest: true
cache: true cache: true
- uses: golangci/golangci-lint-action@v3 - uses: golangci/golangci-lint-action@v3

View File

@ -17,7 +17,7 @@ jobs:
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-go@v3 - uses: actions/setup-go@v3
with: with:
go-version: "1.19" go-version: "1.20"
check-latest: true check-latest: true
cache: true cache: true
- uses: goreleaser/goreleaser-action@v2 - uses: goreleaser/goreleaser-action@v2

View File

@ -9,7 +9,6 @@ run:
- ".*Mock.*" - ".*Mock.*"
- ".*_mock.*" - ".*_mock.*"
- ".*_generated.*" - ".*_generated.*"
go: "1.18"
output: output:
sort-results: true sort-results: true
@ -17,21 +16,21 @@ output:
linters: linters:
disable-all: true disable-all: true
enable: enable:
- deadcode
- errcheck - errcheck
- gosimple - gosimple
- govet - govet
- ineffassign
- staticcheck - staticcheck
- typecheck - typecheck
- unused - unused
- varcheck - errchkjson
- errname - errname
- errorlint - errorlint
- execinquery - execinquery
- gocritic
- goerr113 - goerr113
- gofumpt - gofumpt
- gosec - gosec
- ifshort
- importas - importas
- makezero - makezero
- nilnil - nilnil
@ -42,7 +41,10 @@ linters:
linters-settings: linters-settings:
gosec: gosec:
excludes: excludes:
- G101
- G112
- G402 - G402
- G404
- G501 - G501
- G505 - G505
exclude-generated: true exclude-generated: true
@ -66,9 +68,8 @@ linters-settings:
- unreachable - unreachable
- unusedresult - unusedresult
staticcheck: staticcheck:
go: "1.18"
checks: ["all", "-SA1019"] checks: ["all", "-SA1019"]
gocritic:
issues: enabled-tags:
new: true - style
fix: true - performance