1 Commits
1.4.0 ... 1.3.0

Author SHA1 Message Date
crowlkats
5fae568d37 1.3.0 2024-07-12 13:36:56 +02:00
4 changed files with 5 additions and 5 deletions

2
node_modules/.package-lock.json generated vendored
View File

@@ -1,6 +1,6 @@
{
"name": "setup-deno",
"version": "1.4.0",
"version": "1.3.0",
"lockfileVersion": 3,
"requires": true,
"packages": {

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "setup-deno",
"version": "1.4.0",
"version": "1.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "setup-deno",
"version": "1.4.0",
"version": "1.3.0",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",

View File

@@ -1,7 +1,7 @@
{
"name": "setup-deno",
"description": "Set up Deno easially in GitHub Actions",
"version": "1.4.0",
"version": "1.3.0",
"author": "Deno Land Inc",
"license": "MIT",
"scripts": {

View File

@@ -21,7 +21,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}.`);