feat: Bump OTEL beta core to v0.142.0 #3652
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 | Renovate | |
| on: pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| renovate-config-validator: | |
| name: Renovate config validator | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Renovate config validator | |
| run: npm install --global renovate | |
| - name: Test that the config is valid | |
| run: renovate-config-validator | |
| - name: Test that k8s test-spec is matched | |
| run: | | |
| # info log shows what files and dep ach 'manager' matched | |
| INFO_LOG=$(LOG_LEVEL=info renovate --platform=local) | |
| # we currently expect exactly 1 file and 1 dep | |
| if ! grep 'regex' <<< "${INFO_LOG}" | grep 'fileCount\": 2, \"depCount\": 2'; then | |
| echo "renovate didn't match k8s test-spec" | |
| DEBUG_LOG=$(LOG_LEVEL=debug renovate --platform=local) | |
| echo "Debug log:\n${DEBUG_LOG}" | |
| exit 1 | |
| fi |