Skip to content

Bump org.hibernate.orm.tooling:hibernate-enhance-maven-plugin from 6.6.25.Final to 6.6.26.Final in the all-dependencies group #12

Bump org.hibernate.orm.tooling:hibernate-enhance-maven-plugin from 6.6.25.Final to 6.6.26.Final in the all-dependencies group

Bump org.hibernate.orm.tooling:hibernate-enhance-maven-plugin from 6.6.25.Final to 6.6.26.Final in the all-dependencies group #12

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Run tests
run: mvn clean test
- name: Generate test report
uses: dorny/test-reporter@v2
if: success() || failure()
with:
name: Maven Tests
path: target/surefire-reports/*.xml
reporter: java-junit