Skip to content

Commit

Permalink
bump go to 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhaley committed Feb 17, 2022
1 parent 86e3a40 commit f914011
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 599 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.17
- name: Run goreleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,10 +279,10 @@ $ ssmsh put name=/dev/app/domain value="www.example.com" type=String description
MIT

## Contributing/compiling
1. Ensure you have at least go v1.15
1. Ensure you have at least go v1.17
```
$ go version
go version go1.15.7 darwin/amd64
go version go1.17.6 darwin/arm64
```
2. Ensure your `$GOPATH` exists and is in your `$PATH`
```
Expand Down
22 changes: 16 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
module github.com/bwhaley/ssmsh

go 1.15
go 1.17

require (
github.com/abiosoft/ishell v2.0.1-0.20181228190644-8b8aa74a8512+incompatible
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db // indirect
github.com/aws/aws-sdk-go v1.19.20-0.20190426182805-4dbd475cffe6
github.com/mattn/go-shellwords v1.0.5
gopkg.in/gcfg.v1 v1.2.3
)

require (
github.com/abiosoft/readline v0.0.0-20180607040430-155bce2042db // indirect
github.com/chzyer/logex v1.1.10 // indirect
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fatih/color v1.10.0 // indirect
github.com/flynn-archive/go-shlex v0.0.0-20150515145356-3f9db97f8568 // indirect
github.com/golangci/golangci-lint v1.32.2 // indirect
github.com/mattn/go-shellwords v1.0.5
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
gopkg.in/gcfg.v1 v1.2.3
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/stretchr/testify v1.6.1 // indirect
golang.org/x/net v0.0.0-20200822124328-c89045814202 // indirect
golang.org/x/sys v0.0.0-20201009025420-dfb3f7c4e634 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
)
Loading

0 comments on commit f914011

Please sign in to comment.