Skip to content

Bump spring-boot from 3.5.5 to 4.0.6 [#2625] #269

Bump spring-boot from 3.5.5 to 4.0.6 [#2625]

Bump spring-boot from 3.5.5 to 4.0.6 [#2625] #269

Workflow file for this run

# GOAL: Verify that the code builds without error.
name: "Build the code"
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 25
uses: actions/setup-java@v1
with:
java-version: 25
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
run: mvn clean verify -Pci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}