Compare commits

...

2 Commits

Author SHA1 Message Date
f83d551438 chore(deps): update docker.io/library/node docker tag to v25
Some checks failed
Build / build-arm64 (pull_request) Has been cancelled
Build / build-amd64 (pull_request) Has been cancelled
2025-10-22 22:18:09 +02:00
5004ee907c fix(renovate): adapt customManager configuration
Some checks failed
Build / build-arm64 (push) Has been cancelled
Build / build-amd64 (push) Has been cancelled
2025-10-22 22:17:36 +02:00
2 changed files with 16 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ on:
jobs: jobs:
markdown-link-checker: markdown-link-checker:
container: container:
image: docker.io/library/node:24.10.0-alpine image: docker.io/library/node:25.0.0-alpine
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
@@ -31,7 +31,7 @@ jobs:
markdown-lint: markdown-lint:
container: container:
image: docker.io/library/node:24.10.0-alpine image: docker.io/library/node:25.0.0-alpine
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:

View File

@@ -2,13 +2,17 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [ "customManagers": [
{ {
"fileMatch": ["^README\\.md$"], "customType": "regex",
"fileMatch": [
"^README\\.md$"
],
"matchStrings": [ "matchStrings": [
"IMAGE_VERSION=(?<currentValue>.*)" "IMAGE_VERSION=(?<currentValue>.*)"
], ],
"depNameTemplate": "volker.raschek/docker-compose",
"datasourceTemplate": "docker", "datasourceTemplate": "docker",
"registryUrlTemplate": "https://git.cryptic.systems" "depNameTemplate": "volker.raschek/docker-compose",
"lookupNameTemplate": "git.cryptic.systems/volker.raschek/docker-compose",
"versioningTemplate": "semver"
} }
], ],
"extends": [ "extends": [
@@ -23,8 +27,12 @@
"renovate/automerge" "renovate/automerge"
], ],
"automerge": true, "automerge": true,
"matchPackageNames": [ "docker-compose" ], "matchPackageNames": [
"matchManagers": [ "regex" ] "docker-compose"
],
"matchManagers": [
"regex"
]
} }
] ]
} }