5 Commits

Author SHA1 Message Date
Julien Valverdé
8cd4caeaf0 Fix Renovate config
All checks were successful
Build / build (push) Successful in 47s
Lint / lint (push) Successful in 12s
2025-11-04 01:24:59 +01:00
Julien Valverdé
b66aa99450 Fix Renovate config
All checks were successful
Build / build (push) Successful in 51s
Lint / lint (push) Successful in 12s
2025-11-04 00:58:34 +01:00
Julien Valverdé
693e6ec492 Update Renovate config
All checks were successful
Build / build (push) Successful in 1m23s
Lint / lint (push) Successful in 13s
2025-10-13 00:11:54 +02:00
dd4e8f47b6 Update grafana/tempo:latest Docker digest to 6928536 (#30)
All checks were successful
Build / build (push) Successful in 48s
Lint / lint (push) Successful in 14s
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| grafana/tempo | digest | `89fd395` -> `6928536` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzguNCIsInVwZGF0ZWRJblZlciI6IjQxLjE0MS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Reviewed-on: #30
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Co-committed-by: Renovate Bot <renovate-bot@valverde.cloud>
2025-10-08 18:34:15 +02:00
be0c942316 Update grafana/tempo:latest Docker digest to 89fd395 (#28)
All checks were successful
Build / build (push) Successful in 48s
Lint / lint (push) Successful in 13s
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| grafana/tempo | digest | `b1b2ae4` -> `89fd395` |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzUuOCIsInVwZGF0ZWRJblZlciI6IjQxLjEzNS44IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->

Reviewed-on: #28
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Co-committed-by: Renovate Bot <renovate-bot@valverde.cloud>
2025-10-06 20:06:42 +02:00
2 changed files with 11 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ services:
tempo: tempo:
<<: *service-base <<: *service-base
image: grafana/tempo:latest@sha256:b1b2ae473111f0b1c6011ca30dbff2d13cab58acb96864cda0c6d384299adf8a 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,7 +1,11 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": ["config:recommended"],
"config:recommended" "baseBranchPatterns": ["next"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"packages/webapp/public/98.css/**"
], ],
"packageRules": [ "packageRules": [
{ {
@@ -11,10 +15,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"
} }
] ]
} }