Skip to content

Commit 13ef7b6

Browse files
authored
Use go v1.17 (#120)
* `go mod edit -go=1.11` * Bump go from 1.16 to 1.17 * Revert "`go mod edit -go=1.11`" This reverts commit b205b48. Since `go mod` gets an error: ``` go mod tidy: go.mod file indicates go 1.17, but maximum supported version is 1.16 ```_
2 parents 14785d1 + 79cd267 commit 13ef7b6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-go@v2
1919
with:
20-
go-version: '1.16'
20+
go-version: '1.17'
2121
- name: Build & Test
2222
run: |
2323
go build -v

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v2
88
- uses: actions/setup-go@v2
99
with:
10-
go-version: '1.16'
10+
go-version: '1.17'
1111
- run: go build
1212
- uses: paambaati/codeclimate-action@v2.7.5
1313
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: git fetch --prune --unshallow
1313
- uses: actions/setup-go@v2
1414
with:
15-
go-version: '1.16'
15+
go-version: '1.17'
1616
- name: Release via goreleaser
1717
uses: goreleaser/goreleaser-action@v2
1818
with:

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v2
99
- uses: actions/setup-go@v2
1010
with:
11-
go-version: '1.16'
11+
go-version: '1.17'
1212
- name: install tools
1313
run: |
1414
go get -u golang.org/x/lint/golint

0 commit comments

Comments
 (0)