From 706f53829fdd35ee979308b00ede40ed8d7af5aa Mon Sep 17 00:00:00 2001 From: Sten Tijhuis <102481635+Stensel8@users.noreply.github.com> Date: Sat, 11 Apr 2026 21:33:47 +0200 Subject: [PATCH] chore: add Renovate and Dependabot dependency management Add automated dependency management configuration: - renovate.json: Renovate Bot configuration - .github/dependabot.yml: GitHub Dependabot configuration --- .github/dependabot.yml | 8 ++++++++ renovate.json | 5 +++++ 2 files changed, 13 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 renovate.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..600a98c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,8 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + commit-message: + prefix: "chore" diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..f5504ee --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "enabledManagers": ["github-actions"] +}