chore(deps): update dependency org.owasp:dependency-check-maven to v9.0.9 #195
Workflow file for this run
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: batch-boot-jpa-sample CI Build | |
on: | |
push: | |
paths: | |
- "batch-boot-jpa-sample/**" | |
branches: [main] | |
pull_request: | |
paths: | |
- "batch-boot-jpa-sample/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
name: Run Unit & Integration Tests | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: batch-boot-jpa-sample | |
strategy: | |
matrix: | |
distribution: [ 'temurin' ] | |
java: [ '21' ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: ${{ matrix.distribution }} | |
cache: 'maven' | |
- name: Build and analyze | |
run: ./mvnw clean verify |