From 528105c243c27b954abebee44c9d03207ee49999 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 3 Nov 2024 13:01:18 +0000 Subject: [PATCH 1/2] fix(deps): update module gopkg.in/yaml.v2 to v3 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 6fcc6fc..fa29e18 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/otiai10/copy v1.9.0 github.com/rs/zerolog v1.29.0 github.com/stretchr/testify v1.9.0 - gopkg.in/yaml.v2 v2.4.0 + gopkg.in/yaml.v3 v3.0.1 gopkg.in/yaml.v3 v3.0.1 ) From 70aabee0ddcb3b76576e251c2dcb040db77e06fb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 3 Nov 2024 13:01:18 +0000 Subject: [PATCH 2/2] fix(deps): update module gopkg.in/yaml.v2 to v3 --- internal/config.go | 2 +- internal/config_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/config.go b/internal/config.go index 51283a8..00b2fa3 100644 --- a/internal/config.go +++ b/internal/config.go @@ -4,7 +4,7 @@ import ( "os" "path/filepath" - "gopkg.in/yaml.v2" + "gopkg.in/yaml.v3" ) type ItemType string diff --git a/internal/config_test.go b/internal/config_test.go index bfd8b9a..691a0e2 100644 --- a/internal/config_test.go +++ b/internal/config_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "gopkg.in/yaml.v2" + "gopkg.in/yaml.v3" ) func TestLoadConfig(t *testing.T) {