-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ⬆️ go module go to 1.19 (#11)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: sheldonhull <[email protected]>
- Loading branch information
1 parent
31af436
commit 497620b
Showing
1 changed file
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,31 @@ | ||
module github.com/iwittkau/mage-select | ||
|
||
go 1.12 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect | ||
github.com/magefile/mage v1.14.0 | ||
github.com/manifoldco/promptui v0.3.3-0.20190221150523-ae9f05e7444d | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/alecthomas/gometalinter v2.0.11+incompatible // indirect | ||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect | ||
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect | ||
github.com/client9/misspell v0.3.4 // indirect | ||
github.com/golang/lint v0.0.0-20181026193005-c67002cb31c3 // indirect | ||
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf // indirect | ||
github.com/gordonklaus/ineffassign v0.0.0-20180909121442-1003c8bd00dc // indirect | ||
github.com/juju/ansiterm v0.0.0-20180109212912-720a0952cc2a // indirect | ||
github.com/lunixbochs/vtclean v0.0.0-20180621232353-2d01aacdc34a // indirect | ||
github.com/mattn/go-colorable v0.0.9 // indirect | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/nicksnyder/go-i18n v1.10.0 // indirect | ||
github.com/pelletier/go-toml v1.2.0 // indirect | ||
github.com/tsenart/deadcode v0.0.0-20160724212837-210d2dc333e9 // indirect | ||
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3 // indirect | ||
golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b // indirect | ||
golang.org/x/tools v0.0.0-20181122213734-04b5d21e00f1 // indirect | ||
gopkg.in/alecthomas/kingpin.v3-unstable v3.0.0-20180810215634-df19058c872c // indirect | ||
gopkg.in/yaml.v2 v2.2.2 // indirect | ||
) |