From b2657d48a0d82cc6b7820b249ea329314ae59fb3 Mon Sep 17 00:00:00 2001 From: Markus Mahlberg Date: Wed, 7 Aug 2024 18:57:00 +0200 Subject: [PATCH 1/3] feat: Add dependabot to automate version updates --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..51e516c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly \ No newline at end of file From 7378f7e5140e0157d31f1e9343d6b7ef664ff985 Mon Sep 17 00:00:00 2001 From: Markus Mahlberg <138420+mwmahlberg@users.noreply.github.com> Date: Wed, 7 Aug 2024 19:00:06 +0200 Subject: [PATCH 2/3] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 51e516c..7e428d6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,4 +3,4 @@ updates: - package-ecosystem: gomod directory: / schedule: - interval: weekly \ No newline at end of file + interval: "weekly" From e7701aed6a68a31682a8925e8c458b3a8990a0f5 Mon Sep 17 00:00:00 2001 From: Markus Mahlberg Date: Wed, 7 Aug 2024 19:21:19 +0200 Subject: [PATCH 3/3] fix: Pin mergo to v0.3.16 as per project docs --- go.mod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/go.mod b/go.mod index 6d59c7d..d25e8c5 100644 --- a/go.mod +++ b/go.mod @@ -25,3 +25,5 @@ require ( gopkg.in/fsnotify.v1 v1.4.7 // indirect gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect ) + +replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.16