From 3c8e382b916285f35433b93bc0beacb191735134 Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Tue, 7 Oct 2025 20:13:53 +1000 Subject: [PATCH] chore: update renovate regrex --- ansible/group_vars/all.yml | 4 +--- ansible/tasks/gitea-runner.yml | 4 ++++ renovate.json | 13 +++++-------- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/ansible/group_vars/all.yml b/ansible/group_vars/all.yml index 8527dc0..ca61b13 100644 --- a/ansible/group_vars/all.yml +++ b/ansible/group_vars/all.yml @@ -14,6 +14,4 @@ install_packages: - unattended-upgrades 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" + diff --git a/ansible/tasks/gitea-runner.yml b/ansible/tasks/gitea-runner.yml index be429e4..211ca34 100644 --- a/ansible/tasks/gitea-runner.yml +++ b/ansible/tasks/gitea-runner.yml @@ -19,6 +19,10 @@ when: configyaml.stat.exists == False - 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: name: gitea-runner image: gitea/act_runner:0.2.13 diff --git a/renovate.json b/renovate.json index 0333c8c..df7963c 100644 --- a/renovate.json +++ b/renovate.json @@ -10,22 +10,19 @@ "major": { "automerge": false, "commitMessagePrefix": "chore(deps-major): ", - "labels": [ - "dependencies", - "breaking" - ] + "labels": ["dependencies", "breaking"] }, "customManagers": [ { "customType": "regex", "managerFilePatterns": [ - "/(^|/)tasks/.*\\.ya?ml$/", - "/(^|/)playbooks/.*\\.ya?ml$/" + "(^|/)tasks/.*\\.ya?ml$" ], "matchStrings": [ - "(?\\w+_image):\\s+\"(?[\\w./-]+):(?[\\w.-]+)\"" + "(?\\w+_image):\\s+\"?(?[\\w./-]+):(?[\\w.-]+)\"?" ], - "datasourceTemplate": "docker" + "datasourceTemplate": "docker", + "versioningTemplate": "docker" } ] }