mirror of
https://gitea.com/actions/setup-deno.git
synced 2026-03-24 21:58:20 +00:00
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) <noreply@anthropic.com>
(cherry picked from commit 6a293fc1a2)
20 lines
462 B
JSON
20 lines
462 B
JSON
{
|
|
"name": "setup-deno",
|
|
"description": "Set up Deno easily in GitHub Actions",
|
|
"version": "2.0.3",
|
|
"author": "Deno Land Inc",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"devDependencies": {
|
|
"@actions/cache": "4.0.3",
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/glob": "^0.5.0",
|
|
"@actions/tool-cache": "^2.0.2",
|
|
"semver": "^7.7.1",
|
|
"undici": "^7.8.0",
|
|
"@types/node": "^24",
|
|
"@types/semver": "^7.7.0",
|
|
"tsdown": "0.10.1"
|
|
}
|
|
}
|