diff --git a/.github/workflows/deno_ci.yml b/.github/workflows/deno_ci.yml index e6bf903..db0c7ac 100644 --- a/.github/workflows/deno_ci.yml +++ b/.github/workflows/deno_ci.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@master - uses: denolib/setup-deno@master with: - deno-version: v1.x + deno-version: v1.2.0 - run: deno fmt --check - run: deno test diff --git a/deps.ts b/deps.ts index 531f834..2ac32eb 100644 --- a/deps.ts +++ b/deps.ts @@ -1,16 +1,15 @@ export const test = Deno.test; -export { parse } from "https://deno.land/std@v0.51.0/flags/mod.ts"; +export { parse } from "https://deno.land/std@v0.61.0/flags/mod.ts"; export { green, yellow, red, blue, bold, -} from "https://deno.land/std@v0.51.0/fmt/colors.ts"; +} from "https://deno.land/std@v0.61.0/fmt/colors.ts"; export { assert, assertEquals, - assertStrictEq, assertThrows, assertThrowsAsync, -} from "https://deno.land/std@v0.51.0/testing/asserts.ts"; +} from "https://deno.land/std@v0.61.0/testing/asserts.ts";