From eb33d5551a2596085ebc7b7eb674382400462cbd Mon Sep 17 00:00:00 2001 From: Satya Rohith Date: Fri, 21 May 2021 16:36:04 +0530 Subject: [PATCH] chore: use github releases for stable downloads (#4) --- src/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.js b/src/install.js index 57b71f5..2b027bf 100644 --- a/src/install.js +++ b/src/install.js @@ -19,7 +19,7 @@ async function install(version) { const zip = zipName(); const url = version.isCanary ? `https://dl.deno.land/canary/${version.version}/${zip}` - : `https://dl.deno.land/release/v${version.version}/${zip}`; + : `https://github.com/denoland/deno/releases/download/v${version.version}/${zip}`; core.info(`Downloading Deno from ${url}.`);