From 4494027deeaa7c7829228e52891a0485806879a1 Mon Sep 17 00:00:00 2001 From: Alvin Lin Date: Thu, 24 Nov 2022 14:59:55 -0800 Subject: [PATCH 1/4] Try out dependantbot auto dependencies update Let's see how well it works. Signed-off-by: Alvin Lin --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..ac6621f1928 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 77627fcfe5125baa335ad64b1315bb24c13c5485 Mon Sep 17 00:00:00 2001 From: Alvin Lin Date: Thu, 24 Nov 2022 15:05:17 -0800 Subject: [PATCH 2/4] specify package-ecosystem Signed-off-by: Alvin Lin --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ac6621f1928..64f847dced1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ version: 2 updates: - - package-ecosystem: "" # See documentation for possible values + - package-ecosystem: "gomod" directory: "/" # Location of package manifests schedule: interval: "weekly" From 6c7120c71a20c7122076596dc73963e9c472c44b Mon Sep 17 00:00:00 2001 From: Alvin Lin Date: Thu, 24 Nov 2022 15:07:40 -0800 Subject: [PATCH 3/4] Auto update website's go mod too Signed-off-by: Alvin Lin --- .github/dependabot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 64f847dced1..842b359057f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,10 @@ version: 2 updates: - package-ecosystem: "gomod" - directory: "/" # Location of package manifests + directory: "/" schedule: interval: "weekly" + - package-ecosystem: "gomod" + directory: "/website" + schedule: + interval: "weekly" From 3da5416f1b8d20fc41668752aee907dc51ed56ab Mon Sep 17 00:00:00 2001 From: Alvin Lin Date: Thu, 24 Nov 2022 15:13:26 -0800 Subject: [PATCH 4/4] Fix indentataion Signed-off-by: Alvin Lin --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 842b359057f..02aa2c52306 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,7 +9,7 @@ updates: directory: "/" schedule: interval: "weekly" - - package-ecosystem: "gomod" + - package-ecosystem: "gomod" directory: "/website" schedule: interval: "weekly"