From 423fc644f049d52f042a40c5aa1ab223dd3dd647 Mon Sep 17 00:00:00 2001 From: Nicolai Ommer Date: Sat, 2 Dec 2023 19:01:48 +0100 Subject: [PATCH] Update gopkg.in/yaml --- go.mod | 2 +- go.sum | 2 ++ internal/simctl/handler_robot_specs.go | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 38f72f2..d791219 100644 --- a/go.mod +++ b/go.mod @@ -4,5 +4,5 @@ go 1.21 require ( google.golang.org/protobuf v1.31.0 - gopkg.in/yaml.v2 v2.4.0 + gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index 4746aea..ca28cda 100644 --- a/go.sum +++ b/go.sum @@ -12,3 +12,5 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/internal/simctl/handler_robot_specs.go b/internal/simctl/handler_robot_specs.go index dbda5f2..9554d88 100644 --- a/internal/simctl/handler_robot_specs.go +++ b/internal/simctl/handler_robot_specs.go @@ -4,7 +4,7 @@ import ( "github.com/RoboCup-SSL/ssl-simulation-controller/internal/referee" "google.golang.org/protobuf/proto" "google.golang.org/protobuf/types/known/anypb" - "gopkg.in/yaml.v2" + "gopkg.in/yaml.v3" "log" "os" )