Skip to content

Updated dependencies to align with Spring Boot 3.5.3 #214

Updated dependencies to align with Spring Boot 3.5.3

Updated dependencies to align with Spring Boot 3.5.3 #214

Workflow file for this run

name: spt-development-micrometer-tracing-demo
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Run Maven
run: ./mvnw clean verify -B