Skip to content

fix(deps): update slf4j monorepo to v2.0.16 #13

fix(deps): update slf4j monorepo to v2.0.16

fix(deps): update slf4j monorepo to v2.0.16 #13

Workflow file for this run

name: Build
on:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Determine Java version from POM
run: |
echo "JAVA_VERSION=$(grep '<jdk.version>' pom.xml | cut -f2 -d'>' | cut -f1 -d'<')" >> ${GITHUB_ENV}
- name: Set up JDK ${{ env.JAVA_VERSION }}
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'temurin'
cache: 'maven'
- name: Build, test, analyze
run: mvn -B verify