From d70fef16ab66807183a7ae1a354bf0da2c1eb12f Mon Sep 17 00:00:00 2001 From: KelvinLinBU Date: Tue, 20 May 2025 14:31:29 -0400 Subject: [PATCH] Add depedantbot config to keep actions up-to-date closes https://github.com/CCI-MOC/openstack-billing-from-db/issues/98. This will automate the process of keeping actions in our github workflows up-to-date. It runs periodically, and when a new action version is available, dependabot will generate a pull request with the necessary changes. --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6937de7 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: +- package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly"