chore: add renovate config with SHA-pinned action regex manager #6

Closed
cloudix_mcp_server wants to merge 1 commits from chore/renovate into master
2 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
image: "docker:latest"
image: docker:latest
services:
- "docker:dind"
+17
View File
@@ -0,0 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"gitlabci": {
"enabled": true
},
"regexManagers": [
{
"description": "Track SHA-pinned Gitea Actions (github-actions manager on Gitea platform cannot resolve SHA refs natively)",
"fileMatch": ["^\\.gitea/workflows/.*\\.ya?ml$"],
"matchStrings": [
"uses:\\s+(?<depName>[\\w.-]+\\/[\\w.-]+(?:\\/[\\w.-]+)?)@(?<currentDigest>[a-f0-9]{40})"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
}
]
}