Skip to content

Bump org.springframework.boot:spring-boot-starter-parent from 3.3.2 to 3.3.3 #182

Bump org.springframework.boot:spring-boot-starter-parent from 3.3.2 to 3.3.3

Bump org.springframework.boot:spring-boot-starter-parent from 3.3.2 to 3.3.3 #182

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
name: Java CI with Maven on Pull Request
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
cache: maven
- name: Build with Maven
run: mvn -B verify --file pom.xml
- name: Scan with Sonar
run: |
if [ $FORK = false ]
then
mvn org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=BerryCloud_xapi-java -Dsonar.organization=berrycloud -Dsonar.host.url=https://sonarcloud.io --file pom.xml
fi
env:
FORK: ${{ github.event.pull_request.head.repo.fork }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}