Compare commits

...

2 Commits
v1 ... main

Author SHA1 Message Date
Leo Kettmeir 916edb9a40
1.4.0 (#68)
test / test (1.33.1, ubuntu-latest) (push) Failing after 17s Details
test / test (1.x, ubuntu-latest) (push) Successful in 23s Details
test / test (b290fd01f3f5d32f9d010fc719ced0240759c049, ubuntu-latest) (push) Successful in 18s Details
test / test (canary, ubuntu-latest) (push) Successful in 1m27s Details
test / test (~1.32, ubuntu-latest) (push) Failing after 12s Details
test / test-version-file (.dvmrc) (push) Successful in 16s Details
test / test-version-file (.tool-versions) (push) Successful in 1m31s Details
test / test (1.33.1, macos-latest) (push) Has been cancelled Details
test / test (1.33.1, windows-latest) (push) Has been cancelled Details
test / test (1.x, macos-latest) (push) Has been cancelled Details
test / test (1.x, windows-latest) (push) Has been cancelled Details
test / test (b290fd01f3f5d32f9d010fc719ced0240759c049, macos-latest) (push) Has been cancelled Details
test / test (b290fd01f3f5d32f9d010fc719ced0240759c049, windows-latest) (push) Has been cancelled Details
test / test (canary, macos-latest) (push) Has been cancelled Details
test / test (canary, windows-latest) (push) Has been cancelled Details
test / test (~1.32, macos-latest) (push) Has been cancelled Details
test / test (~1.32, windows-latest) (push) Has been cancelled Details
2024-08-21 10:32:07 -07:00
Leo Kettmeir b8a676db36
fix: use dl.deno.land for downloading binaries (#67) 2024-08-21 10:24:39 -07: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.3.0",
"version": "1.4.0",
"lockfileVersion": 3,
"requires": true,
"packages": {

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "setup-deno",
"version": "1.3.0",
"version": "1.4.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "setup-deno",
"version": "1.3.0",
"version": "1.4.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.3.0",
"version": "1.4.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://github.com/denoland/deno/releases/download/v${version.version}/${zip}`;
: `https://dl.deno.land/release/v${version.version}/${zip}`;
core.info(`Downloading Deno from ${url}.`);