Bump owasp/nest-schema from 0.1.40 to 0.1.46 #15
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: pull request checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| # for security reasons the github actions are pinned to specific release versions | |
| jobs: | |
| link_checker: | |
| name: Schema checker | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout all files | |
| uses: actions/[email protected] | |
| - name: Check index | |
| uses: dsanders11/[email protected] | |
| with: | |
| schema: ./index.schema.json | |
| files: ./index.json | |
| - name: Check threat models | |
| uses: dsanders11/[email protected] | |
| with: | |
| schema: ./threat-model.schema.json | |
| files: | | |
| ./threat-models/web-applications/*.json | |
| ./threat-models/infrastructure/*.json | |
| ./threat-models/ai-ml-systems/*.json | |
| all-errors: true |