From 549b6dab376d5437f188f4d84cec56b4960859da Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Fri, 26 Jan 2024 08:02:51 +0100 Subject: [PATCH 1/2] Add basic dependabot config. --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..2f4ff90 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +--- +# Copyright (c) Ansible Project +# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) +# SPDX-License-Identifier: GPL-3.0-or-later + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 124a5b7ce8decfc1b80a456654d1a9e967e1da3e Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Fri, 26 Jan 2024 17:53:56 +0100 Subject: [PATCH 2/2] Increase frequency to daily. --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2f4ff90..22fa631 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,4 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "daily"