From 1e27461bdd037ae463a250d0010d8174633dc299 Mon Sep 17 00:00:00 2001 From: Ralph Ursprung Date: Tue, 11 Jun 2024 09:28:17 +0200 Subject: [PATCH] enable dependabot for java + GHA this will enable dependabot updates, as it is also done for other OpenSearch projects. while this project currently doesn't have any java dependencies it still makes sense to enable it here since this is a template repository and projects created based on it will usually have such dependencies in the future. Signed-off-by: Ralph Ursprung --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..132b8b5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: + - "dependabot" + - "dependencies" + - package-ecosystem: "gradle" + directory: "/" + schedule: + interval: "weekly" + labels: + - "dependabot" + - "dependencies"