Skip to content

Bump org.springframework.boot:spring-boot-starter-parent from 3.0.2 to 3.1.4 #171

Bump org.springframework.boot:spring-boot-starter-parent from 3.0.2 to 3.1.4

Bump org.springframework.boot:spring-boot-starter-parent from 3.0.2 to 3.1.4 #171

name: CI with Maven - Test and Build
# Trigger the workflow pull request,
# but only for the main branch
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Test and Build with Maven
run: ./mvnw --batch-mode clean verify -DskipIntegrationTests=false