Merge branch 'master' into next
All checks were successful
Lint / lint (push) Successful in 13s

This commit is contained in:
Julien Valverdé
2025-10-13 00:13:14 +02:00
2 changed files with 7 additions and 8 deletions

View File

@@ -48,7 +48,7 @@ services:
tempo: tempo:
<<: *service-base <<: *service-base
image: grafana/tempo:latest@sha256:89fd395d641588d8714b23d67e93d7502362bf213d3d6d9ecd00f63c1be9a8ea image: grafana/tempo:latest@sha256:692853614cc344c15f5695d3a950fcca326dd7bcffa544fe36b8d978e90a146b
command: [-config.file=/etc/tempo.yaml] command: [-config.file=/etc/tempo.yaml]
volumes: volumes:
- ./telemetry/tempo.yaml:/etc/tempo.yaml - ./telemetry/tempo.yaml:/etc/tempo.yaml

View File

@@ -1,8 +1,7 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:recommended"],
"config:recommended" "baseBranchPatterns": ["next"],
],
"packageRules": [ "packageRules": [
{ {
"matchManagers": ["bun", "npm"], "matchManagers": ["bun", "npm"],
@@ -11,10 +10,10 @@
"groupSlug": "bun-minor-patch" "groupSlug": "bun-minor-patch"
}, },
{ {
"matchManagers": ["bun", "npm"], "matchManagers": ["dockerfile", "docker-compose"],
"matchUpdateTypes": ["major"], "matchUpdateTypes": ["minor", "patch", "digest"],
"groupName": "bun major updates", "groupName": "docker minor+patch+digest updates",
"groupSlug": "bun-major" "groupSlug": "docker-minor-patch-digest"
} }
] ]
} }