Skip to content

Bump org.hibernate.orm:hibernate-core from 7.2.0.Final to 7.2.3.Final #294

Bump org.hibernate.orm:hibernate-core from 7.2.0.Final to 7.2.3.Final

Bump org.hibernate.orm:hibernate-core from 7.2.0.Final to 7.2.3.Final #294

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17, 21, 25 ]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build with Maven
run: mvn -V -B install ${{ matrix.java == 17 && 'site' || '' }}