Skip to content

Bump org.springframework:spring-core from 6.0.16 to 6.1.14 in /boat-maven-plugin/src/it/example #1373

Bump org.springframework:spring-core from 6.0.16 to 6.1.14 in /boat-maven-plugin/src/it/example

Bump org.springframework:spring-core from 6.0.16 to 6.1.14 in /boat-maven-plugin/src/it/example #1373

Workflow file for this run

name: BOAT
on:
pull_request:
branches:
- main
jobs:
test:
if: "!contains(github.event.head_commit.message, '[version bump]')"
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '21'
cache: 'maven'
- name: Build & Test
run: mvn -B test
sonar:
if: "!contains(github.event.head_commit.message, '[version bump]')"
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '21'
cache: 'maven'
- name: Build and Analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B verify sonar:sonar -Dgpg.skip