Skip to content

Bump org.assertj:assertj-core from 3.27.5 to 3.27.6 #563

Bump org.assertj:assertj-core from 3.27.5 to 3.27.6

Bump org.assertj:assertj-core from 3.27.5 to 3.27.6 #563

Workflow file for this run

name: Build the project
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.PAT }}
- name: Update resources with Maven
run: mvn -B process-resources
- name: Update files if needed
uses: stefanzweifel/git-auto-commit-action@v6
- name: Set up JDK 17 and Maven Central Repository
uses: actions/setup-java@v5
with:
java-version: '17'
distribution: 'adopt'
cache: 'maven'
- name: Build the project and run integration tests
run: mvn -B verify