From 0d15c7dabe6407b1def5ccd211d141479f96ddcc Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Fri, 3 Oct 2025 14:06:02 +0200 Subject: [PATCH] switch to ajv-cli --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c6879e4..519a9fe 100644 --- a/action.yml +++ b/action.yml @@ -25,9 +25,9 @@ runs: shell: bash run: | echo "Updating schema to the latest version" - npx ajv migrate -i schema.json -o schema.json + npx ajv-cli migrate -i schema.json -o schema.json - name: Validate JSON shell: bash run: | echo "Validating JSON" - npx ajv validate -s schema.json -d ${{ inputs.json-file }} + npx ajv-cli validate -s schema.json -d ${{ inputs.json-file }}