diff --git a/group_vars/git.yml b/group_vars/git.yml index b8a5c243..0a7e6bd0 100644 --- a/group_vars/git.yml +++ b/group_vars/git.yml @@ -55,7 +55,7 @@ ufw_rules: ### roles-ansible.gitea gitea_fork: "forgejo" # gitea update -gitea_version: "9.0.1" +gitea_version: "9.0.0" gitea_version_check: true gitea_backup_on_upgrade: false # gitea in the linux world diff --git a/renovate.json b/renovate.json index b68ecc39..e62c9d6e 100644 --- a/renovate.json +++ b/renovate.json @@ -1,61 +1,51 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], - "ignorePaths": [ - "**/friedhof/**" - ], - "customManagers": [ - { - "customType": "regex", - "fileMatch": [ - "blocky.yml$" - ], - "matchStrings": [ - "blocky_version: (?v[\\d.]+)" - ], - "datasourceTemplate": "github-releases", - "depNameTemplate": "0xERR0R/blocky" - }, - { - "customType": "regex", - "fileMatch": [ - "pve.yml$" - ], - "matchStrings": [ - "cv4pve_version: (?v[\\d.]+)" - ], - "datasourceTemplate": "github-releases", - "depNameTemplate": "Corsinvest/cv4pve-autosnap" - } - ], - "packageRules": [ - { - "matchDatasources": [ - "github-releases" - ], - "matchDepNames": [ - "0xERR0R/blocky" - ], - "matchUpdateTypes": [ - "minor", - "patch" - ], - "automerge": true - }, - { - "matchDatasources": [ - "github-releases" - ], - "matchDepNames": [ - "Corsinvest/cv4pve-autosnap" - ], - "matchUpdateTypes": [ - "minor", - "patch" - ], - "automerge": true - } - ] + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "ignorePaths": ["**/friedhof/**"], + "regexManagers": [ + { + "fileMatch": ["blocky.yml$"], + "matchStrings": [ + "blocky_version: (?v[\\d.]+)" + ], + "datasourceTemplate": "github-releases", + "depNameTemplate": "0xERR0R/blocky" + }, + { + "fileMatch": ["pve.yml$"], + "matchStrings": [ + "cv4pve_version: (?v[\\d.]+)" + ], + "datasourceTemplate": "github-releases", + "depNameTemplate": "Corsinvest/cv4pve-autosnap" + }, + { + "fileMatch": ["git.yml$"], + "matchStrings": [ + "gitea_version: (?[\\d.]+)" + ], + "datasourceTemplate": "gitea-tags", + "depNameTemplate": "forgejo/forgejo", + "registryUrls": ["https://codeberg.org"] + } + ], + "packageRules": [ + { + "matchDatasources": ["github-releases"], + "matchDepNames": ["0xERR0R/blocky"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + }, + { + "matchDatasources": ["github-releases"], + "matchDepNames": ["Corsinvest/cv4pve-autosnap"], + "matchUpdateTypes": ["minor", "patch"], + "automerge": true + }, + { + "matchDatasources": ["gitea-tags"], + "matchDepNames": ["forgejo/forgejo"], + "automerge": true + } + ] }