Skip to content

Commit 30fe616

Browse files
committed
Try to fix test
1 parent d99d0de commit 30fe616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/validateWorkflowSchemas.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ trap 'rm -rf "$TEMP_SCHEMA_DIR"' EXIT
2020
# Download the up-to-date json schemas for github actions and workflows
2121
for SCHEMA in github-action.json github-workflow.json; do
2222
info "Downloading $SCHEMA schema..."
23-
if curl "https://json.schemastore.org/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then
23+
if curl "https://raw.githubusercontent.com/SchemaStore/schemastore/refs/heads/master/src/schemas/json/$SCHEMA" --output "$TEMP_SCHEMA_DIR/$SCHEMA" --silent; then
2424
success "Successfully downloaded $SCHEMA schema!"
2525
else
2626
error "Failed downloading $SCHEMA schema" >&2

0 commit comments

Comments
 (0)