diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4f0d202..493304b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -9,6 +9,8 @@ on:
- "script/build.*"
- "src/ffi.ts"
- "webview/**"
+ - ".gitmodules"
+ - "deno.json"
jobs:
build:
diff --git a/deps.ts b/deps.ts
index 6be3c7b..85ea8ff 100644
--- a/deps.ts
+++ b/deps.ts
@@ -3,4 +3,4 @@ export {
download,
prepare,
} from "https://deno.land/x/plug@0.5.2/plug.ts";
-export { join } from "https://deno.land/std@0.145.0/path/mod.ts";
+export { join } from "https://deno.land/std@0.153.0/path/mod.ts";
diff --git a/examples/multi-window/main.ts b/examples/multi-window/main.ts
index 70a154e..3e6bf6e 100644
--- a/examples/multi-window/main.ts
+++ b/examples/multi-window/main.ts
@@ -1,4 +1,4 @@
-import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
+import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
import { preload } from "../../mod.ts";
await preload();
diff --git a/examples/server.ts b/examples/server.ts
index 1f77d13..7239707 100644
--- a/examples/server.ts
+++ b/examples/server.ts
@@ -1,4 +1,4 @@
-import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
+import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
import { Webview } from "../mod.ts";
const controller = new AbortController();
diff --git a/examples/ssr/main.ts b/examples/ssr/main.ts
index b902afe..a6bfe4e 100644
--- a/examples/ssr/main.ts
+++ b/examples/ssr/main.ts
@@ -1,4 +1,4 @@
-import { dirname, join } from "https://deno.land/std@0.139.0/path/mod.ts";
+import { dirname, join } from "https://deno.land/std@0.153.0/path/mod.ts";
import { Webview } from "../../mod.ts";
const worker = new Worker(
diff --git a/examples/ssr/worker.tsx b/examples/ssr/worker.tsx
index b423430..f489d45 100644
--- a/examples/ssr/worker.tsx
+++ b/examples/ssr/worker.tsx
@@ -4,7 +4,7 @@
///
///
-import { serve } from "https://deno.land/std@0.139.0/http/server.ts";
+import { serve } from "https://deno.land/std@0.153.0/http/server.ts";
import { h, ssr, tw } from "https://crux.land/nanossr@0.0.1";
const Hello = (props: { name: string }) => (
diff --git a/script/build.ts b/script/build.ts
index 5caae17..e81888b 100644
--- a/script/build.ts
+++ b/script/build.ts
@@ -1,4 +1,4 @@
-import { ensureDir } from "https://deno.land/std@0.145.0/fs/ensure_dir.ts";
+import { ensureDir } from "https://deno.land/std@0.153.0/fs/ensure_dir.ts";
const decoder = new TextDecoder();
const architectures = [["x86_64", "x86_64"], ["aarch64", "arm64"]] as const;