diff options
| author | Jacob Oaks <jacoboaks.8@gmail.com> | 2024-04-29 15:11:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-29 15:11:08 -0400 |
| commit | 2f5551811aa337b77dfa44d657c49d26fac211ab (patch) | |
| tree | ea4780118c04df7e938a4a79d593891871e7682a /go.mod | |
| parent | 34cf1555dfab2bfa5d37142d86bf738554bbbc3a (diff) | |
| parent | ccb6af30c7e835cf82c8caa5a939bf7bffb0632e (diff) | |
| download | sally-2f5551811aa337b77dfa44d657c49d26fac211ab.tar.gz | |
Merge pull request #141 from harryzcy/use-go-1.22
Use Go 1.22 and upgrade dependencies
Diffstat (limited to '')
| -rw-r--r-- | go.mod | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,8 +1,6 @@ module go.uber.org/sally -go 1.21 - -toolchain go1.21.3 +go 1.22 require ( github.com/stretchr/testify v1.9.0 @@ -12,7 +10,7 @@ require ( require ( github.com/davecgh/go-spew v1.1.1 // indirect - github.com/kr/pretty v0.1.0 // indirect + github.com/kr/pretty v0.3.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect + gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect ) |