Skip to content

Bump io.micrometer:micrometer-core from 1.11.5 to 1.12.0 #1194

Bump io.micrometer:micrometer-core from 1.11.5 to 1.12.0

Bump io.micrometer:micrometer-core from 1.11.5 to 1.12.0 #1194

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 17]
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
check-latest: true
distribution: adopt
java-version: ${{ matrix.java }}
- uses: actions/cache@v3
env:
cache-name: cache-maven-artifacts
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Build with Maven
run: mvn -B verify