diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7ffc82a8..5dd35c64 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Deno uses: denoland/setup-deno@v1 with: - deno-version: v1.38 + deno-version: v1.39 - name: Run bundle build run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 73a85c51..fc7905ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - name: Setup Deno uses: denoland/setup-deno@v1 with: - deno-version: v1.38 + deno-version: v1.39 - name: Run build run: deno task build - name: Bundle diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index d0fd0a68..cef227b0 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Deno uses: denoland/setup-deno@v1 with: - deno-version: v1.38 + deno-version: v1.39 - name: Build bundles run: | diff --git a/Dockerfile b/Dockerfile index 9784d889..9f6cfa0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lukechannings/deno:v1.39.0 +FROM lukechannings/deno:v1.39.4 # The volume that will keep the space data # Either create a volume: diff --git a/cli/plug_run.test.ts b/cli/plug_run.test.ts index c70b6894..826cd86c 100644 --- a/cli/plug_run.test.ts +++ b/cli/plug_run.test.ts @@ -2,7 +2,7 @@ import { AssetBundle } from "../plugos/asset_bundle/bundle.ts"; import { compileManifest } from "../plugos/compile.ts"; import { esbuild } from "../plugos/deps.ts"; import { runPlug } from "./plug_run.ts"; -import assets from "../dist/plug_asset_bundle.json" with { type: "json" }; +import assets from "../dist/plug_asset_bundle.json" assert { type: "json" }; import { assertEquals } from "../test_deps.ts"; import { path } from "../common/deps.ts"; diff --git a/cmd/plug_run.ts b/cmd/plug_run.ts index f12c72ae..2bb191df 100644 --- a/cmd/plug_run.ts +++ b/cmd/plug_run.ts @@ -1,6 +1,6 @@ import { runPlug } from "../cli/plug_run.ts"; import { path } from "../common/deps.ts"; -import assets from "../dist/plug_asset_bundle.json" with { +import assets from "../dist/plug_asset_bundle.json" assert { type: "json", }; import { AssetBundle } from "../plugos/asset_bundle/bundle.ts"; diff --git a/cmd/server.ts b/cmd/server.ts index 12093437..011c43e2 100644 --- a/cmd/server.ts +++ b/cmd/server.ts @@ -2,7 +2,7 @@ import { HttpServer } from "../server/http_server.ts"; import clientAssetBundle from "../dist/client_asset_bundle.json" with { type: "json", }; -import plugAssetBundle from "../dist/plug_asset_bundle.json" with { +import plugAssetBundle from "../dist/plug_asset_bundle.json" assert { type: "json", }; import { AssetBundle, AssetJson } from "../plugos/asset_bundle/bundle.ts";