Compare commits

..
Author SHA1 Message Date
Leo Kettmeir 75ab51f9e3 fix 2026-07-02 23:22:55 +02:00
Leo Kettmeir 1520405906 build 2026-07-02 23:03:14 +02:00
Leo Kettmeir 2a1cac393f chore: use versions.json from dl.deno.land 2026-07-02 18:54:33 +02:00
Leo KettmeirandGitHub ff4860f9d7 2.0.4 (#125) 2026-03-18 17:33:32 +01:00
6a293fc1a2 feat: upgrade Node.js runtime from node20 to node24 (#123)
GitHub Actions is deprecating the Node.js 20 runtime, with enforcement
starting June 2, 2026. This updates the action to use node24 runtime.

- action.yml: change `using: "node20"` to `using: "node24"`
- package.json: bump `@types/node` from ^20.16.5 to ^24

Fixes #122

Co-authored-by: Claude Opus 4.6 (1M context) <[email protected]>
2026-03-17 12:09:57 +01:00
Ms2gerandGitHub 390061ada6 docs: fix identifier for latest stable release (#115) 2026-02-13 16:28:47 +01:00
Christian SvenssonandGitHub bdaa2e4f84 docs: condense Deno version information in one section (#100) 2025-11-27 01:39:06 +01:00
Christian SvenssonandGitHub e4ff81cdb2 docs: add lts as possible release-channel output (#99) 2025-11-27 01:37:33 +01:00
katayama8000andGitHub bac1f7276c Update actions/checkout (#106) 2025-11-04 23:43:14 +09:00
Leo KettmeirandGitHub 2f7698fd11 2.0.3 (#102) 2025-05-15 21:44:43 +02:00
David SherretandGitHub ee64dd3200 fix: switch back to package.json as it's necessary for GH actions (#101) 2025-05-15 00:33:36 +02:00
David SherretandGitHub 3169cf993b feat: include a hash of deno.lock files in the cache key automatically (#98) 2025-05-13 12:53:56 -04:00
Christian SvenssonandGitHub fd6b0ad149 feat: add built-in caching via inputs (#89) 2025-05-12 12:53:44 -04:00
SebastianandGitHub a1496dd8d9 feat: add "lts" version option (#97) 2025-05-12 12:23:36 -04:00
Christian SvenssonandGitHub 95bbb87724 refactor: convert action to TS and bundle code (#95) 2025-05-12 12:14:45 -04:00
Leo KettmeirandGitHub 27e0043eff 2.0.2 (#92) 2025-01-09 14:00:34 -08:00
Leo KettmeirandGitHub 5e036d05d8 refactor: use GitHub downloads for stable version download (#91) 2025-01-07 01:42:09 -08:00
Ryo NakamuraandGitHub 56da422736 feat: add problem matchers for deno lint (#62) 2024-12-05 17:29:54 -08:00
Leo KettmeirandGitHub 1c4873e05d 2.0.1 (#86) 2024-10-09 02:01:02 -07:00
Leo KettmeirandGitHub 4b0db74aa8 fix: update README and tests (#85) 2024-10-09 09:54:03 +01:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
- "1.33.1"
- "canary"
- "~1.32"
- "b290fd01f3f5d32f9d010fc719ced0240759c049"
- "4e8b2f46ab638ae6fa20cf53a9a4cd3b5f4550bf"
- "rc"
- "lts"
+2 -2
View File
@@ -19385,8 +19385,8 @@ async function resolveRelease(range) {
kind: "stable"
};
} else {
const res = await fetchWithRetries("https://deno.com/versions.json");
if (res.status !== 200) throw new Error("Failed to fetch stable version info from deno.com/versions.json. Please try again later.");
const res = await fetchWithRetries("https://dl.deno.land/versions.json");
if (res.status !== 200) throw new Error("Failed to fetch stable version info from dl.deno.land/versions.json. Please try again later.");
const versionJson = await res.json();
if (typeof versionJson !== "object" || versionJson === null) throw new Error("Fetched stable version info is invalid.");
if (!("cli" in versionJson)) throw new Error("Fetched stable version info is invalid.");
+2 -2
View File
@@ -159,10 +159,10 @@ async function resolveRelease(range: string): Promise<Version | null> {
}
return { version, kind: "stable" };
} else {
const res = await fetchWithRetries("https://deno.com/versions.json");
const res = await fetchWithRetries("https://dl.deno.land/versions.json");
if (res.status !== 200) {
throw new Error(
"Failed to fetch stable version info from deno.com/versions.json. Please try again later.",
"Failed to fetch stable version info from dl.deno.land/versions.json. Please try again later.",
);
}
const versionJson = await res.json();