Skip to content

chore(deps): update actions/checkout action to v6.0.2 (#1589) #4578

chore(deps): update actions/checkout action to v6.0.2 (#1589)

chore(deps): update actions/checkout action to v6.0.2 (#1589) #4578

Workflow file for this run

name: JSON Schema Check
on:
push:
pull_request:
jobs:
json-schema-check:
runs-on: ubuntu-24.04
container: python:3.11-alpine3.16
steps:
- uses: actions/checkout@v6.0.2
- name: Test
run: |
pip install jsonschema==4.14.0
for f in $(find config/ -name '*.json')
do
echo "Checking $f"
jsonschema -i $f config-schema.json
done