opentelemetry-collector: bump chart to v0.131.1 and lock ebpfProfiler default image tag #1003
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint Charts | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| with: | |
| create-kind-cluster: "false" | |
| - name: Run chart-testing (lint) | |
| run: "ct lint --target-branch main --debug | |
| --chart-repos opentelemetry-collector=https://open-telemetry.github.io/opentelemetry-helm-charts | |
| --chart-repos prometheus=https://prometheus-community.github.io/helm-charts | |
| --chart-repos grafana=https://grafana.github.io/helm-charts | |
| --chart-repos jaeger=https://jaegertracing.github.io/helm-charts" | |
| - name: Run make check-examples | |
| run: make check-examples |