ci: fix vendor path of GitHub workflow definitions

Change-Id: Ia8e3a50a857eb1d82a34e75b65ec9f39608ce8fc
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/6220
Reviewed-by: Paul Jolly <paul@myitcv.org.uk>
diff --git a/cue.mod/pkg/github.com/SchemaStore/schemastore/schemas/json/github-workflow.cue b/cue.mod/pkg/github.com/SchemaStore/schemastore/src/schemas/json/github-workflow.cue
similarity index 100%
rename from cue.mod/pkg/github.com/SchemaStore/schemastore/schemas/json/github-workflow.cue
rename to cue.mod/pkg/github.com/SchemaStore/schemastore/src/schemas/json/github-workflow.cue
diff --git a/internal/ci/ci_tool.cue b/internal/ci/ci_tool.cue
index bd59c2c..b150255 100644
--- a/internal/ci/ci_tool.cue
+++ b/internal/ci/ci_tool.cue
@@ -29,6 +29,6 @@
 	}
 	convert: exec.Run & {
 		stdin: get.response.body
-		cmd:   "go run cuelang.org/go/cmd/cue import -f -p json -l #Workflow: jsonschema: - --outfile pkg/github.com/SchemaStore/schemastore/schemas/json/github-workflow.cue"
+		cmd:   "go run cuelang.org/go/cmd/cue import -f -p json -l #Workflow: jsonschema: - --outfile pkg/github.com/SchemaStore/schemastore/src/schemas/json/github-workflow.cue"
 	}
 }
diff --git a/internal/ci/workflows.cue b/internal/ci/workflows.cue
index edf99d7..6d2d564 100644
--- a/internal/ci/workflows.cue
+++ b/internal/ci/workflows.cue
@@ -1,7 +1,7 @@
 package ci
 
 import (
-	"github.com/SchemaStore/schemastore/schemas/json"
+	"github.com/SchemaStore/schemastore/src/schemas/json"
 	encjson "encoding/json"
 )