Skip to content

fix(deps): update module golang.org/x/crypto to v0.29.0 (#1435) #3724

fix(deps): update module golang.org/x/crypto to v0.29.0 (#1435)

fix(deps): update module golang.org/x/crypto to v0.29.0 (#1435) #3724

Workflow file for this run

name: JSON Schema Check
on:
push:
pull_request:
jobs:
json-schema-check:
runs-on: ubuntu-22.04
container: python:3.11-alpine3.16
steps:
- uses: actions/[email protected]
- 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