Update proto dep to v2 api (#8572)

With the most recent update to cel-go, the legacy proto package has been
completely replaced
by the v2 proto API. This change updates the import to reflect code
present in the cel-go vendor
directory.
This commit is contained in:
Tristan Swadell 2022-09-23 02:31:10 -07:00 committed by GitHub
parent 8b62de2784
commit 2f272a1a2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package cel
import (
"github.com/golang/protobuf/proto"
"google.golang.org/protobuf/proto"
"github.com/google/cel-go/checker/decls"
exprpb "google.golang.org/genproto/googleapis/api/expr/v1alpha1"