From 43edb2a934c504712100dc573dfeb7a7f4327457 Mon Sep 17 00:00:00 2001 From: Christopher Obbard Date: Wed, 13 Apr 2022 10:15:28 +0100 Subject: [PATCH] ci: Keep dependencies up-to-date using dependabot Dependabot should automatically create pull requests when go modules are updated. This should then run the CI scripts to make sure fakemachine is built and tested on each supported version of Go. Signed-off-by: Christopher Obbard --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..615dfde --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily"