From 9cbb41429cf9da48290d64fe73216abdf4e57edd Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 18 Aug 2023 01:40:45 -0700 Subject: [PATCH] Enables dependabot for Cargo and Actions (#102) --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b3e1fa5 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates#package-ecosystem + +version: 2 +updates: + # Enable updates for Github Actions + - package-ecosystem: "github-actions" + target-branch: "master" + directory: "/" + schedule: + # Check for updates to GitHub Actions every month + interval: "monthly" + # Enable updates for Cargo + - package-ecosystem: "cargo" + target-branch: "master" + directory: "/" + schedule: + interval: "monthly"