Skip to content

fix: bump springdoc openapi to 2.8.1 compatible with spring boot 3.4.1 #126

fix: bump springdoc openapi to 2.8.1 compatible with spring boot 3.4.1

fix: bump springdoc openapi to 2.8.1 compatible with spring boot 3.4.1 #126

Workflow file for this run

name: Trivy Analysis
on:
push:
branches:
- main
- develop
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@0.28.0
env:
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db:2
with:
format: 'table'
scan-type: 'repo'
exit-code: '1'
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'