Skip to content

Commit 4e0f582

Browse files
authored
Merge pull request #201 from mattfarina/bump-go-1.20
Updating Go for 1.20
2 parents cc17577 + 0605d1d commit 4e0f582

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Diff for: .github/workflows/golangci-lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
- name: Setup Go
1616
uses: actions/setup-go@v3
1717
with:
18-
go-version: 1.18
18+
go-version: "1.20"
1919
- name: golangci-lint
2020
uses: golangci/[email protected]
2121
with:
22-
version: v1.48
22+
version: v1.52

Diff for: .github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.17.x, 1.18.x, 1.19.x]
7+
go-version: [1.18.x, 1.19.x, 1.20.x]
88
platform: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.platform }}
1010
steps:

Diff for: .golangci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ linters:
55
disable-all: true
66
enable:
77
- misspell
8-
- structcheck
98
- govet
109
- staticcheck
11-
- deadcode
1210
- errcheck
13-
- varcheck
1411
- unparam
1512
- ineffassign
1613
- nakedret

0 commit comments

Comments
 (0)