From 46344710a79384185409c0832db5524e7f0d408b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 18 Mar 2026 03:53:18 +0000 Subject: [PATCH] ci: add GitHub Actions to Dependabot version updates Extend Dependabot configuration to track GitHub Actions versions. The existing config only covered devcontainers; this adds weekly monitoring for all actions used in pull-requests.yml and push-master.yml (actions/checkout, actions/setup-dotnet, actions/cache, peaceiris/actions-gh-pages). Also normalise indentation in dependabot.yml from 1-space to 2-space to match standard YAML style. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f33a02cd1..ae3cde3d6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,7 +6,14 @@ version: 2 updates: - - package-ecosystem: "devcontainers" - directory: "/" - schedule: - interval: weekly + - package-ecosystem: "devcontainers" + directory: "/" + schedule: + interval: weekly + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: weekly + labels: + - "enhancement"