chore(deps): update error-prone monorepo to v2.50.0 #240
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: Micrometer Compatibility | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| compat-test: | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: upstream | |
| repository: micrometer-metrics/micrometer | |
| # renovate: datasource=github-releases depName=micrometer-metrics/micrometer packageName=micrometer-metrics/micrometer | |
| ref: v1.17.0 | |
| - name: typed-descriptor | |
| # TODO: remove this temporary opt-in leg once Micrometer switches the | |
| # Prometheus client integration to typed descriptors by default. | |
| # Follow-up: https://github.com/prometheus/client_java/issues/2182 | |
| repository: zeitlinger/micrometer | |
| # renovate: datasource=git-refs depName=zeitlinger/micrometer packageName=https://github.com/zeitlinger/micrometer currentValue=feat/prom-client-java-typed-family-descriptor | |
| ref: 09f32142f06b11a88afe41eab50daaf6c8d08efb | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - uses: jdx/mise-action@dba19683ed58901619b14f395a24841710cb4925 # v4.1.0 | |
| with: | |
| version: v2026.5.18 | |
| sha256: cfac593469d028d7ae5fe36e37bd7c59118b5238e92d8a876209578464f24a84 | |
| working_directory: .mise/envs/micrometer | |
| - name: Cache local Maven repository | |
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
| - name: Run Micrometer compatibility tests | |
| working-directory: .mise/envs/micrometer | |
| env: | |
| MICROMETER_REPOSITORY: ${{ matrix.repository }} | |
| MICROMETER_REF: ${{ matrix.ref }} | |
| run: mise compat-test | |
| micrometer-compatibility: | |
| name: micrometer-compatibility | |
| runs-on: ubuntu-24.04 | |
| needs: compat-test | |
| if: always() | |
| steps: | |
| - name: Aggregate matrix results | |
| run: | | |
| if [[ "${{ needs.compat-test.result }}" != "success" ]]; then | |
| echo "compat-test matrix failed: ${{ needs.compat-test.result }}" | |
| exit 1 | |
| fi |