Skip to content

Bump org.springframework.boot:spring-boot-starter-parent from 3.3.0 to 3.3.1 #594

Bump org.springframework.boot:spring-boot-starter-parent from 3.3.0 to 3.3.1

Bump org.springframework.boot:spring-boot-starter-parent from 3.3.0 to 3.3.1 #594

Workflow file for this run

name: Pull Request CI
on:
pull_request: ~
jobs:
pr_build:
runs-on: ubuntu-latest
steps:
# Checkout source code
- uses: actions/checkout@v3
# Cache maven stuff
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and test
run: ./build/build.sh
- name: Upload Jacoco coverage report
uses: actions/upload-artifact@v3
with:
name: jacoco-report
path: testreport/target/site/jacoco-aggregate/
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v3
with:
name: pr
path: |
pr/
testreport/target/site/jacoco-aggregate/jacoco.csv