Skip to content

fix(deps): update spring boot to v3.2.2 #127

fix(deps): update spring boot to v3.2.2

fix(deps): update spring boot to v3.2.2 #127

Workflow file for this run

name: auditing
on:
push:
paths:
- "auditing/**"
branches:
- master
pull_request:
paths:
- "auditing/**"
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "21"
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Start up PostgreSQL in Docker
run: |
docker-compose up -d postgres
sleep 10
docker ps -a
- name: Build with Maven
run: |
mvn clean install --file auditing/pom.xml
mvn clean verify -Pit --file auditing/pom.xml