From 3b32425567dfb56e5bd5a3ac895e977eea956900 Mon Sep 17 00:00:00 2001 From: Luke Young <91491244+lyoung-confluent@users.noreply.github.com> Date: Thu, 3 Feb 2022 23:36:11 -0800 Subject: [PATCH] remove .v1 from gopkg.in --- ql/lib/semmle/go/frameworks/SQL.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ql/lib/semmle/go/frameworks/SQL.qll b/ql/lib/semmle/go/frameworks/SQL.qll index 0c91f02c5ad..4568fe5645e 100644 --- a/ql/lib/semmle/go/frameworks/SQL.qll +++ b/ql/lib/semmle/go/frameworks/SQL.qll @@ -83,7 +83,7 @@ module SQL { SquirrelQueryString() { exists(Function fn | exists(string sq | - sq = package(["github.com/Masterminds/squirrel", "gopkg.in/Masterminds/squirrel.v1", "github.com/lann/squirrel"], "") + sq = package(["github.com/Masterminds/squirrel", "gopkg.in/Masterminds/squirrel", "github.com/lann/squirrel"], "") | // first argument to `squirrel.Expr` fn.hasQualifiedName(sq, "Expr")