diff --git a/deno-lib/updateReadme.test.ts b/deno-lib/updateReadme.test.ts index d6fc9065..7fc17805 100644 --- a/deno-lib/updateReadme.test.ts +++ b/deno-lib/updateReadme.test.ts @@ -1,7 +1,7 @@ import { assertEquals, assertThrows, -} from "https://deno.land/std@0.223.0/assert/mod.ts"; +} from "https://deno.land/std@0.224.0/assert/mod.ts"; import { updateReadme } from "./updateReadme.ts"; const readme_default = ` diff --git a/deno-lib/validateYaml.test.ts b/deno-lib/validateYaml.test.ts index bb9e6472..60be6636 100644 --- a/deno-lib/validateYaml.test.ts +++ b/deno-lib/validateYaml.test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.223.0/assert/mod.ts"; +import { assertEquals } from "https://deno.land/std@0.224.0/assert/mod.ts"; import { validateYaml } from "./validateYaml.ts"; import blogPostSchema from "./fixtures/updateYaml/blogpost.schema.json" with { diff --git a/deno-lib/validateYaml.ts b/deno-lib/validateYaml.ts index 97dd3b4c..0a7c7a46 100644 --- a/deno-lib/validateYaml.ts +++ b/deno-lib/validateYaml.ts @@ -1,5 +1,5 @@ import Ajv, { type Schema } from "https://esm.sh/ajv@8.12.0?pin=v135"; -import { parse } from "https://deno.land/std@0.223.0/yaml/parse.ts"; +import { parse } from "https://deno.land/std@0.224.0/yaml/parse.ts"; /** * Validates a string of YAML content against a JSON schema with Ajv.