From 9b7fc4d3de5bffacdf49240e4621bd74a0c62788 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 02:12:45 +0000 Subject: [PATCH] chore: add renovate config with SHA-pinned action regex manager, fix gitlabci image quotes --- .gitlab-ci.yml | 2 +- renovate.json | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 renovate.json diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 71341c2..800568b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: "docker:latest" +image: docker:latest services: - "docker:dind" diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..ead2687 --- /dev/null +++ b/renovate.json @@ -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+(?[\\w.-]+\\/[\\w.-]+(?:\\/[\\w.-]+)?)@(?[a-f0-9]{40})" + ], + "datasourceTemplate": "github-releases", + "versioningTemplate": "semver" + } + ] +} -- 2.52.0