Skip to content

Commit eb6e93d

Browse files
committed
ci: also auto-update GitHub Actions via Dependabot
Add a github-actions ecosystem to the Dependabot config so pinned action versions (actions/checkout, setup-r, quarto-actions, etc.) get bumped automatically alongside the macros submodule (per reviewer suggestion). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01DrceBhXtcKRFaPPEMwxAZN
1 parent 506af63 commit eb6e93d

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Keep git submodules up to date automatically.
1+
# Keep git submodules and pinned GitHub Actions up to date automatically.
22
#
33
# This template embeds the shared `macros` repo as a git submodule. Dependabot's
44
# `gitsubmodule` updater opens a PR whenever a submodule's default branch
@@ -14,3 +14,13 @@ updates:
1414
interval: "weekly"
1515
commit-message:
1616
prefix: "chore(submodule)"
17+
18+
# Also keep pinned GitHub Actions current. Dependabot scans .github/workflows/
19+
# and opens a PR when a newer release of a pinned action is available;
20+
# unversioned @HEAD / @main pins are left untouched.
21+
- package-ecosystem: "github-actions"
22+
directory: "/"
23+
schedule:
24+
interval: "weekly"
25+
commit-message:
26+
prefix: "chore(actions)"

0 commit comments

Comments
 (0)