Skip to content

reformat session entity #6

reformat session entity

reformat session entity #6

Workflow file for this run

name: OWASP Noir Security Scan

Check failure on line 1 in .github/workflows/noir-security.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/noir-security.yml

Invalid workflow file

(Line: 16, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
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