diff --git a/.github/workflows/oak-ci.yml b/.github/workflows/oak-ci.yml index 32ed255e..ba5a575e 100644 --- a/.github/workflows/oak-ci.yml +++ b/.github/workflows/oak-ci.yml @@ -15,7 +15,7 @@ jobs: - name: download deno uses: denoland/setup-deno@main with: - deno-version: 1.18.0 + deno-version: 1.19.0 - name: check format if: matrix.os == 'ubuntu-latest' diff --git a/_build_npm.ts b/_build_npm.ts index 76474dbe..57cccd38 100755 --- a/_build_npm.ts +++ b/_build_npm.ts @@ -8,7 +8,7 @@ * @module */ -import { build, emptyDir } from "https://deno.land/x/dnt@0.19.0/mod.ts"; +import { build, emptyDir } from "https://deno.land/x/dnt@0.20.0/mod.ts"; import { copy } from "https://deno.land/std@0.126.0/fs/copy.ts"; async function start() { diff --git a/deps.ts b/deps.ts index d14adc72..dc2261ab 100644 --- a/deps.ts +++ b/deps.ts @@ -36,7 +36,7 @@ export { contentType, extension, lookup, -} from "https://deno.land/x/media_types@v2.12.1/mod.ts"; +} from "https://deno.land/x/media_types@v2.12.2/mod.ts"; export { compile, match as pathMatch, diff --git a/etag.ts b/etag.ts index 46ba7e5b..3ef6f7c2 100644 --- a/etag.ts +++ b/etag.ts @@ -72,6 +72,8 @@ export function getEntity>( context: Context, ): Promise { const { body } = context.response; + // TODO(@kitsonk) refactor when denoland/node_deno_shims#88 is resolved + // deno-lint-ignore no-deprecated-deno-api if (body instanceof Deno.File) { return fstat(body); }