From 22b498ac4f36262e548d081b62bc3f2736a92d6d Mon Sep 17 00:00:00 2001 From: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com> Date: Thu, 15 May 2025 22:54:54 +0300 Subject: [PATCH] Add Dependabot configuration for GitHub Actions updates Introduce a dependabot.yml file to automate dependency updates for GitHub Actions workflows. Updates are scheduled to run weekly, ensuring the project stays up-to-date with the latest changes. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com> --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..0e2da01c1 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +# 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/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +enable-beta-ecosystems: true + +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: weekly