From 19a5f8f5f2dfadec40c535756bdc68961ba0edee Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Wed, 17 Dec 2025 18:13:10 -0500 Subject: [PATCH] [CI] Added Dependabot for GitHub Actions Our CI uses external GitHub Actions for different things such as checking out the repo. This updates Dependabot to check for updates to these actions and raise a PR whenever there is an update. --- .github/dependabot.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c3bb65a3086..c9dde1555ce 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,4 +9,12 @@ updates: interval: "monthly" # Update all submodules - directory: / \ No newline at end of file + directory: / + + # This will create a PR if there are any updates to the actions used in the CI. + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows` + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly"