build(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.3.1 to 3.3.5 #254
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java 21 CI with Maven | |
on: | |
push: | |
branches: [ "main", "workshop" ] | |
pull_request: | |
branches: [ "main", "workshop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B verify --file pom.xml | |
- name: Upload Report | |
uses: 'actions/upload-artifact@v4' | |
with: | |
name: jacoco-report | |
path: ${{ github.workspace }}/target/site/jacoco/jacoco.xml | |
- name: Add coverage to PR | |
id: jacoco | |
uses: Madrapps/jacoco-report@v1.6.1 | |
with: | |
paths: ${{ github.workspace }}/target/site/jacoco/jacoco.xml | |
token: ${{ secrets.GITHUB_TOKEN }} | |
min-coverage-overall: 40 | |
min-coverage-changed-files: 60 | |
- name: Update dependency graph | |
uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |