Skip to content

deps: bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.14 to 3.0.0 #44

deps: bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.14 to 3.0.0

deps: bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.14 to 3.0.0 #44

Workflow file for this run

name: OWASP Noir Security Scan
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
noir-security:
name: Run OWASP Noir
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# --- Escaneo de código fuente ---
- name: Run OWASP Noir - Source Code Scan
uses: owasp-noir/noir@v0.25.0
with:
targets: |
.
# --- Escaneo de API (OpenAPI / Swagger) ---
- name: Start Spring Boot App (background)
run: |
./mvnw -q -DskipTests spring-boot:run &
echo "Waiting for API to start..."
sleep 25