deps: bump org.springdoc:springdoc-openapi-starter-webmvc-ui from 2.8.14 to 3.0.0 #44
Workflow file for this run
This file contains hidden or 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: 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 |