diff options
author | Jason Song <i@wolfogre.com> | 2022-11-21 16:36:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-21 16:36:59 +0800 |
commit | e4eaa68a2b2355c7333406fdcbb8b118677b95df (patch) | |
tree | a4027ec3b2efc7bf4d2f22f51676f3dc26e829e3 /go.mod | |
parent | b4802b9b2eae044e35f022dc7116986e4762a944 (diff) | |
download | gitea-e4eaa68a2b2355c7333406fdcbb8b118677b95df.tar.gz gitea-e4eaa68a2b2355c7333406fdcbb8b118677b95df.zip |
Replace yaml.v2 with yaml.v3 (#21832)
I don't see why we have to use two versions of yaml. The difference
between the two versions has nothing to do with our usage.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,6 @@ require ( golang.org/x/tools v0.1.12 gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df gopkg.in/ini.v1 v1.67.0 - gopkg.in/yaml.v2 v2.4.0 gopkg.in/yaml.v3 v3.0.1 mvdan.cc/xurls/v2 v2.4.0 strk.kbt.io/projects/go/libravatar v0.0.0-20191008002943-06d1c002b251 @@ -293,6 +292,7 @@ require ( gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect sigs.k8s.io/yaml v1.2.0 // indirect ) |