Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directories:
- "/"
- "/.github/actions/build-wasm"
- "/.github/actions/cache-rust-build"
- "/.github/actions/macos-codesign-notarize"
- "/.github/actions/set-build-profile"
- "/.github/actions/windows-codesign"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: macos-codesign-notarize and set-build-profile currently have no external uses: in their action.yml (only run-steps / nested local action refs), so Dependabot will find nothing to bump in them today. Harmless to keep them listed — it just future-proofs in case they later pull in a pinned external action — but worth knowing they're no-ops right now.

schedule:
interval: "weekly"
cooldown:
default-days: 7

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: consider adding open-pull-requests-limit and labels for explicitness. With groups batching everything into one PR the default limit of 5 is effectively never hit, so this is purely cosmetic; and the repo already applies a dependabot label, so neither is required. Optional.

groups:
actions:
patterns: ["*"]
Loading