Skip to content

build(deps): bump org.projectlombok:lombok from 1.18.36 to 1.18.46 #600

build(deps): bump org.projectlombok:lombok from 1.18.36 to 1.18.46

build(deps): bump org.projectlombok:lombok from 1.18.36 to 1.18.46 #600

Workflow file for this run

name: Java CI with Maven
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
pull-requests: write
checks: write
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- run: mvn -B verify
- uses: dorny/test-reporter@v3
if: always()
with:
name: JUnit Tests
path: '**/target/surefire-reports/TEST-*.xml'
reporter: java-junit
fail-on-error: false
- uses: madrapps/jacoco-report@v1.7.2
with:
paths: ${{ github.workspace }}/**/target/site/jacoco/jacoco.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 80
min-coverage-changed-files: 80