From f9daf61e9672e04af4cf719451aeba3c0fd26e8e Mon Sep 17 00:00:00 2001 From: ying-jeanne <74549700+ying-jeanne@users.noreply.github.com> Date: Wed, 11 Jan 2023 16:08:28 +0800 Subject: [PATCH] [Bug] Fix xorm dependency on yaml v2 2.2.3 (#61183) fix xorm dependency on yaml v2 2.2.3 --- pkg/util/xorm/go.mod | 1 + pkg/util/xorm/go.sum | 2 ++ 2 files changed, 3 insertions(+) diff --git a/pkg/util/xorm/go.mod b/pkg/util/xorm/go.mod index 6d8b58f41a2..95cdb5d2b6b 100644 --- a/pkg/util/xorm/go.mod +++ b/pkg/util/xorm/go.mod @@ -10,6 +10,7 @@ require ( github.com/mattn/go-sqlite3 v1.10.0 github.com/stretchr/testify v1.4.0 github.com/ziutek/mymysql v1.5.4 + gopkg.in/yaml.v2 v2.2.8 // indirect xorm.io/builder v0.3.6 xorm.io/core v0.7.2 ) diff --git a/pkg/util/xorm/go.sum b/pkg/util/xorm/go.sum index 2102cc5b7af..1bbc639a7a3 100644 --- a/pkg/util/xorm/go.sum +++ b/pkg/util/xorm/go.sum @@ -140,6 +140,8 @@ gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWD gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8 h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=