chore: update renovate regrex

This commit is contained in:
2025-10-07 20:13:53 +10:00
parent 81023b1bd3
commit 3c8e382b91
3 changed files with 10 additions and 11 deletions

View File

@ -14,6 +14,4 @@ install_packages:
- unattended-upgrades - unattended-upgrades
data_folder: /data data_folder: /data
alpine_latest_image: "alpine:latest"
ubuntu_latest_image: "node:22-trixie"
debian_latest_image: "git.comprofix.com/mmckinnon/debian-latest:2025.08.31-093853"

View File

@ -19,6 +19,10 @@
when: configyaml.stat.exists == False when: configyaml.stat.exists == False
- name: Create the gitea-runner container - name: Create the gitea-runner container
vars:
alpine_latest_image: "alpine:latest"
ubuntu_latest_image: "node:22-trixie"
debian_latest_image: "git.comprofix.com/mmckinnon/debian-latest:2025.08.31-093853"
docker_container: docker_container:
name: gitea-runner name: gitea-runner
image: gitea/act_runner:0.2.13 image: gitea/act_runner:0.2.13

View File

@ -10,22 +10,19 @@
"major": { "major": {
"automerge": false, "automerge": false,
"commitMessagePrefix": "chore(deps-major): ", "commitMessagePrefix": "chore(deps-major): ",
"labels": [ "labels": ["dependencies", "breaking"]
"dependencies",
"breaking"
]
}, },
"customManagers": [ "customManagers": [
{ {
"customType": "regex", "customType": "regex",
"managerFilePatterns": [ "managerFilePatterns": [
"/(^|/)tasks/.*\\.ya?ml$/", "(^|/)tasks/.*\\.ya?ml$"
"/(^|/)playbooks/.*\\.ya?ml$/"
], ],
"matchStrings": [ "matchStrings": [
"(?<varName>\\w+_image):\\s+\"(?<depName>[\\w./-]+):(?<currentValue>[\\w.-]+)\"" "(?<varName>\\w+_image):\\s+\"?(?<depName>[\\w./-]+):(?<currentValue>[\\w.-]+)\"?"
], ],
"datasourceTemplate": "docker" "datasourceTemplate": "docker",
"versioningTemplate": "docker"
} }
] ]
} }