Skip to content

Commit 9cf65a4

Browse files
authored
Dependency updates to fix broken builds (integrations#1547)
* Switch to Go 1.20 in normal CI * Get latest version of golangci-lint * Remove outdated linters * Use explicit version of client9/misspell
1 parent ab4070a commit 9cf65a4

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-go@v3
1414
with:
15-
go-version: '1.19'
15+
go-version: '1.20'
1616
- run: make tools
1717
- run: make lint
1818
- run: make website-lint

.golangci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,14 @@ issues:
99
linters:
1010
disable-all: true
1111
enable:
12-
- deadcode
1312
- errcheck
1413
- gofmt
1514
- gosimple
1615
- ineffassign
1716
- misspell
1817
- staticcheck
19-
- structcheck
2018
- unconvert
2119
- unused
22-
- varcheck
2320
- vet
2421

2522
linters-settings:

GNUmakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ PKG_NAME=github
66
default: build
77

88
tools:
9-
go install github.com/client9/misspell/cmd/misspell
10-
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.48.0
9+
go install github.com/client9/misspell/cmd/misspell@v0.3.4
10+
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.1
1111

1212
build: fmtcheck
1313
go build ./...

0 commit comments

Comments
 (0)