diff options
author | 2023-02-04 22:35:25 -0800 | |
---|---|---|
committer | 2023-02-04 22:35:25 -0800 | |
commit | e4a248384fa9f3f92b50e9e02287af5d97e013b9 (patch) | |
tree | bb341e55aae17d9fbe2cf012b1be9e26faacd94c /tools/go.mod | |
parent | e9eacd9f7087bd1ca438656ea7eb7026f8a6bf3b (diff) | |
download | sally-e4a248384fa9f3f92b50e9e02287af5d97e013b9.tar.gz sally-e4a248384fa9f3f92b50e9e02287af5d97e013b9.tar.zst sally-e4a248384fa9f3f92b50e9e02287af5d97e013b9.zip |
ci: Build against Go 1.20 (#76)
Upgrades to latest release of Go for CI.
This requires switching staticcheck to the latest release as well.
Diffstat (limited to 'tools/go.mod')
-rw-r--r-- | tools/go.mod | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/go.mod b/tools/go.mod index c722bd9..e198f0b 100644 --- a/tools/go.mod +++ b/tools/go.mod @@ -2,15 +2,15 @@ module go.uber.org/sally/tools require ( golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 - honnef.co/go/tools v0.3.3 + honnef.co/go/tools v0.4.0 ) require ( - github.com/BurntSushi/toml v1.1.0 // indirect - golang.org/x/exp/typeparams v0.0.0-20220516143420-24438e51023a // indirect - golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect - golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a // indirect - golang.org/x/tools v0.1.11-0.20220513221640-090b14e8501f // indirect + github.com/BurntSushi/toml v1.2.1 // indirect + golang.org/x/exp/typeparams v0.0.0-20221208152030-732eee02a75a // indirect + golang.org/x/mod v0.7.0 // indirect + golang.org/x/sys v0.3.0 // indirect + golang.org/x/tools v0.4.1-0.20221208213631-3f74d914ae6d // indirect ) go 1.19 |