Skip to content

Commit

Permalink
Merge pull request #18 from k-yomo/update-go-version-to-1.17
Browse files Browse the repository at this point in the history
Update Go version to 1.17
  • Loading branch information
k-yomo authored Jan 7, 2022
2 parents fa66936 + e740dc3 commit 3332c0d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go 1.16
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
fail-fast: false
matrix:
go-version:
- '1.14.x'
- '1.15.x'
- '1.16.x'
- '1.17.x'
steps:
- name: Set up Go
uses: actions/[email protected]
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
module github.com/k-yomo/fixtory

go 1.16
go 1.17

require (
github.com/fatih/color v1.13.0
github.com/google/go-cmp v0.5.6
golang.org/x/mod v0.5.1
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)

require (
github.com/mattn/go-colorable v0.1.9 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
)

0 comments on commit 3332c0d

Please sign in to comment.