Skip to content

update CVE-2023-22041 to reflect OpenJDK 8 being stated as not affect… #67

update CVE-2023-22041 to reflect OpenJDK 8 being stated as not affect…

update CVE-2023-22041 to reflect OpenJDK 8 being stated as not affect… #67

Workflow file for this run

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@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
with:
python-version: '3.12'
- name: "Install check-jsonschema"
run: pip install check-jsonschema
- name: "Verify overrides json schema"
run: check-jsonschema --schemafile schema/overrides.schema.json data/**/*.json
- name: "Verify snapshots json schema"
run: check-jsonschema --schemafile schema/snapshots.schema.json .snapshot/**/*.json