We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d99d0de commit 30fe616Copy full SHA for 30fe616
scripts/validateWorkflowSchemas.sh
@@ -20,7 +20,7 @@ trap 'rm -rf "$TEMP_SCHEMA_DIR"' EXIT
20
# Download the up-to-date json schemas for github actions and workflows
21
for SCHEMA in github-action.json github-workflow.json; do
22
info "Downloading $SCHEMA schema..."
23
- if curl "https://json.schemastore.org/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then
+ if curl "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then
24
success "Successfully downloaded $SCHEMA schema!"
25
else
26
error "Failed downloading $SCHEMA schema" >&2
0 commit comments