Skip to content

fix(deps): update module github.com/pkg/sftp to v1.13.9 #3891

fix(deps): update module github.com/pkg/sftp to v1.13.9

fix(deps): update module github.com/pkg/sftp to v1.13.9 #3891

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@v4.2.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