From f69f76817da01e61d57afade5dcfcf99e76730e6 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 16 Jul 2024 15:49:59 +0200 Subject: [PATCH 1/2] Keep GitHub Actions up to date with GitHub's Dependabot Automate the creation of pull requests like: * #2213 * [Keeping your actions up to date with Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot) * [Configuration options for the dependabot.yml file - package-ecosystem](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem) --- .github/dependabot.yml | 13 +++++++++++++ CHANGELOG.md | 1 + 2 files changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..be006de9a --- /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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 240fa2605..72b499c81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ project adheres to [Semantic Versioning](http://semver.org/). ================== ### Changed ### Added +* Keep GitHub Actions up to date with GitHub's Dependabot ### Fixed From 7b08f91153d4987759c2f6745c571465bc031933 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 13 Jan 2025 10:26:17 +0100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72b499c81..77c7b19d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ project adheres to [Semantic Versioning](http://semver.org/). ================== ### Changed ### Added -* Keep GitHub Actions up to date with GitHub's Dependabot + ### Fixed