Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zeitlinger committed Sep 12, 2024
1 parent 75796a4 commit e3d00d3
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 54 deletions.
139 changes: 85 additions & 54 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,88 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"branchPrefix": "grafanarenovatebot/",
"username": "GrafanaRenovateBot",
"gitAuthor": "GrafanaRenovateBot <[email protected]>",
"platformCommit": true,
"dependencyDashboard": false,
"platform": "github",
"forkProcessing": "enabled",
"repositories": [
"grafana/docker-otel-lgtm"
],
"packageRules": [
{
"matchUpdateTypes": [
"major"
],
"labels": [
"update-major"
]
},
{
"matchUpdateTypes": [
"minor"
],
"labels": [
"update-minor"
]
},
{
"matchUpdateTypes": [
"patch"
],
"labels": [
"automerge-patch"
]
},
{
"matchUpdateTypes": [
"digest"
],
"labels": [
"update-digest"
]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"automerge-security-update"
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"branchPrefix": "grafanarenovatebot/",
"username": "GrafanaRenovateBot",
"gitAuthor": "GrafanaRenovateBot <[email protected]>",
"platformCommit": true,
"dependencyDashboard": false,
"platform": "github",
"forkProcessing": "enabled",
"repositories": [
"grafana/docker-otel-lgtm"
],
"packageRules": [
{
"matchUpdateTypes": [
"major"
],
"labels": [
"update-major"
]
},
"osvVulnerabilityAlerts": true
{
"matchUpdateTypes": [
"minor"
],
"labels": [
"update-minor"
]
},
{
"matchUpdateTypes": [
"patch"
],
"labels": [
"automerge-patch"
]
},
{
"matchUpdateTypes": [
"digest"
],
"labels": [
"update-digest"
]
},
{
"matchPackageNames": [
"open-telemetry/opentelemetry-collector-releases"
],
"allowedVersions": "!/cmd/"
},
{
"matchPackageNames": [
"grafana/loki"
],
"allowedVersions": "!/operator/"
},
{
"matchPackageNames": [
"grafana/tempo"
],
"allowedVersions": "!/rc/"
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": [
"automerge-security-update"
]
},
"osvVulnerabilityAlerts": true,
"customManagers": [
{
"customType": "regex",
"description": "Update _VERSION variables in Dockerfiles",
"fileMatch": [
"(^|/|\\.)Dockerfile$",
"(^|/)Dockerfile\\.[^/]*$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?)(?: depName=(?<depName>.+?))? packageName=(?<packageName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
]
}
]
}
5 changes: 5 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
FROM redhat/ubi9

# renovate: datasource=github-releases depName=grafana packageName=grafana/grafana
ENV GRAFANA_VERSION="11.1.3"
# renovate: datasource=github-releases depName=prometheus packageName=prometheus/prometheus
ENV PROMETHEUS_VERSION="2.53.1"
# renovate: datasource=github-releases depName=tempo packageName=grafana/tempo
ENV TEMPO_VERSION="2.5.0"
# renovate: datasource=github-releases depName=loki packageName=grafana/loki
ENV LOKI_VERSION="3.1.0"
# renovate: datasource=github-releases depName=opentelemetry-collector packageName=open-telemetry/opentelemetry-collector-releases
ENV OPENTELEMETRY_COLLECTOR_VERSION="0.106.1"

# TARGETARCH is automatically detected and set by the Docker daemon during the build process. If the build starts
Expand Down

0 comments on commit e3d00d3

Please sign in to comment.