Skip to content
Merged
2 changes: 1 addition & 1 deletion docs/usage/examples/opentelemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:

# Prometheus for storing metrics
prometheus:
image: prom/prometheus:v3.2.1
image: prom/prometheus:v3.3.0
ports:
- '9090:9090' # Web UI
- '4318' # OTLP HTTP
Expand Down
2 changes: 1 addition & 1 deletion lib/modules/manager/azure-pipelines/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ resources:
- container: linux
image: ubuntu:24.04
- container: python
image: python:3.13@sha256:aaf6d3c4576a462fb335f476bed251511f2f1e61ca8e8e97e9e197bc92a7a1ee
image: python:3.13@sha256:9819e5616923079cc16af4a93d4be92c0c487c6e02fd9027220381f3e125d64a

stages:
- stage: StageOne
Expand Down
7 changes: 7 additions & 0 deletions lib/modules/manager/devbox/artifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ export async function updateArtifacts({
const execOptions: ExecOptions = {
cwdFile: packageFileName,
toolConstraints: [
// we are required to install nix because devbox spawns nix commands internally
// https://github.com/renovatebot/renovate/discussions/35382
// https://github.com/jetify-com/devbox/issues/2585
{
toolName: 'nix',
constraint: constraints?.nix,
},
{
toolName: 'devbox',
constraint: constraints?.devbox,
Expand Down
Loading
Loading