adjust version ranges for CVE-2019-1003098 to prevent some false posi… #419
This file contains 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: "Validations" | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
verify-json-schem: | |
name: "Verify json schema" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: '3.12' | |
- name: "Install check-jsonschema" | |
run: pip install check-jsonschema | |
- name: "Verify enrichment record json schema" | |
run: check-jsonschema --schemafile schema/enrichment_record.schema.json data/**/**/*.json | |