Skip to content

Commit

Permalink
Update Go to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
sj14 committed Nov 7, 2021
1 parent 2cf2916 commit 5de07be
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.15'
go-version: '^1.17'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.17'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
1 change: 1 addition & 0 deletions cmd/astral/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ func main() {
type colorDesc struct {
color aurora.Value
desc string
err error
}

type timeSlice []time.Time
Expand Down
8 changes: 6 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
module github.com/sj14/astral

go 1.16
go 1.17

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/logrusorgru/aurora/v3 v3.0.0
github.com/stretchr/testify v1.7.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

0 comments on commit 5de07be

Please sign in to comment.