diff --git a/src/version.js b/src/version.js index 0e4cfb5..3e7af0c 100644 --- a/src/version.js +++ b/src/version.js @@ -60,9 +60,7 @@ async function resolveVersion({ range, isCanary }) { return { version: range, isCanary: true }; } - const res = await fetch( - "https://raw.githubusercontent.com/denoland/dotland/main/versions.json", - ); + const res = await fetch("https://deno.com/versions.json"); if (res.status !== 200) { throw new Error( "Failed to fetch stable version info from raw.githubusercontent.com. Please try again later.",