From 38b273f36eff3719a7996d8204be7c5c7635d296 Mon Sep 17 00:00:00 2001 From: Doug Chapman <54039637+dougch@users.noreply.github.com> Date: Tue, 12 Nov 2024 08:31:28 -0800 Subject: [PATCH] chore: configure dependabot (#4861) --- .github/dependabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..9c9ee516393 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +# This configuration file tells Dependabot which +# package ecosystems to update and where the package manifests are located. +# https://docs.github.com/en/enterprise-cloud@latest/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates + +version: 2 +updates: + # Maintain dependencies for GitHub Actions + # https://github.com/dependabot/dependabot-core/pull/6189 + - package-ecosystem: "github-actions" + directory: "/.github/workflows" + schedule: + interval: "daily" + + # Maintain dependencies for cargo + - package-ecosystem: "cargo" + directories: + - "/bindings/rust" + - "/bindings/rust-examples" + - "/tests/pcap" + - "/tests/regression" + schedule: + interval: "daily"