From 55bd54a06387b87201cf1d99dae4e6050460baa2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 8 Mar 2024 12:54:12 +0100 Subject: [PATCH 1/3] Keep GitHub Actions up to date with GitHub's Dependabot * https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot * https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..be006de9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +# Keep GitHub Actions up to date with GitHub's Dependabot... +# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + groups: + github-actions: + patterns: + - "*" # Group all Actions updates into a single larger pull request + schedule: + interval: weekly From cc95037ee7dbfc84d31177e46d3999fe41792323 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 8 Mar 2024 13:32:59 +0100 Subject: [PATCH 2/3] monthly, not weekly --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index be006de9..0b84a243 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,4 +10,4 @@ updates: patterns: - "*" # Group all Actions updates into a single larger pull request schedule: - interval: weekly + interval: monthly From 715f28f156f2b4a7ff92ccd7b38a6a62d02bbca7 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 8 Mar 2024 13:41:10 +0100 Subject: [PATCH 3/3] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0b84a243..9f8d18cc 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,6 @@ updates: groups: github-actions: patterns: - - "*" # Group all Actions updates into a single larger pull request + - "*" # Group all Actions updates into a single larger pull request schedule: interval: monthly