Skip to content

chore(deps): bump org.liquibase:liquibase-core from 4.29.1 to 4.30.0 #273

chore(deps): bump org.liquibase:liquibase-core from 4.29.1 to 4.30.0

chore(deps): bump org.liquibase:liquibase-core from 4.29.1 to 4.30.0 #273

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'corretto'
cache: maven
- name: Cache SonarQube packages
uses: actions/cache@v4
if: ${{ github.actor != 'dependabot[bot]' }}
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn compile
- name: Run tests
run: mvn verify -Pcoverage
- name: Analyze
if: ${{ github.actor != 'dependabot[bot]' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: https://sonarcloud.io
run: mvn org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
- name: Add coverage to PR
uses: madrapps/jacoco-report@v1.7.0
if: ${{ github.actor != 'dependabot[bot]' }}
with:
paths: ${{ github.workspace }}/target/site/jacoco/jacoco.xml
token: ${{ secrets.GITHUB_TOKEN }}
min-coverage-overall: 40
min-coverage-changed-files: 60
title: '# :lobster: Coverage Report'
pass-emoji: ':green_circle:'
fail-emoji: ':red_circle:'
update-comment: true