Files
headlamp-plugin-template/renovate.json
T
Hugh Hackman c8af99da7c chore(renovate): add pinDigests to github-actions packageRule
Pin GitHub Actions references to full commit SHAs via Renovate.
This ensures supply-chain security by preventing floating tags
from silently pointing at different commits.

Mirrors the change being made in the org-level renovate-config.json
(.github PR #63). Applying it directly here ensures new plugins
created from this template have SHA pinning from day one.

Related: PRI-731

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-22 06:57:30 +00:00

21 lines
530 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"baseBranches": ["main"],
"schedule": ["every weekend"],
"prConcurrentLimit": 10,
"packageRules": [
{
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "npm minor and patch"
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "github-actions minor and patch",
"pinDigests": true
}
]
}