Skip to content

Bump spring.boot.version from 3.5.7 to 4.0.1 #709

Bump spring.boot.version from 3.5.7 to 4.0.1

Bump spring.boot.version from 3.5.7 to 4.0.1 #709

Workflow file for this run

name: Building and testing
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v6.0.1
- name: Set up JDK 17
uses: actions/setup-java@v5.1.0
with:
java-version: '17'
distribution: 'temurin'
- name: Cache Maven packages
uses: actions/cache@v4.3.0
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -Pci --batch-mode --update-snapshots package