Skip to content

Commit

Permalink
Update to Go 1.16 (#55)
Browse files Browse the repository at this point in the history
Go 1.16 [1] is finally released so the Go version used for the
`actions/setup-go` action in the `ci` workflow has been updated from
`1.15.x` to `1.16.x` and the defined Go version in the `go.mod` file
has been bumped to `go 1.16`.

[1]: https://golang.org/doc/go1.16

Closes GH-54
  • Loading branch information
svengreb authored Apr 21, 2021
1 parent f208cdc commit 1f20fe1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.15.x"
go-version: "1.16.x"
- name: "Run golangci-lint"
# The official golangci-lint action created and maintained by the golangci-lint project.
# See https://github.com/golangci/golangci-lint-action for more details.
Expand All @@ -55,7 +55,7 @@ jobs:
test:
strategy:
matrix:
go-version: ["1.15.x"]
go-version: ["1.16.x"]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
needs:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/svengreb/tmpl-go

go 1.15
go 1.16

require github.com/stretchr/testify v1.7.0

0 comments on commit 1f20fe1

Please sign in to comment.