2 Commits

Author SHA1 Message Date
crowlkats
70768ed567 fmt 2024-10-02 05:16:43 +02:00
crowlkats
5f06e8aafb feat: add warning for setup-deno v1 2024-10-02 05:13:56 +02:00
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@ function exit(message) {
}
async function main() {
core.warning(
"Running on setup-deno@1, which is deprecated.\nPlease update to setup-deno@2, which defaults to Deno 2.0",
);
try {
const denoVersionFile = core.getInput("deno-version-file");
const range = parseVersionRange(

View File

@@ -1,7 +1,7 @@
{
"name": "setup-deno",
"description": "Set up Deno easially in GitHub Actions",
"version": "1.5.1",
"version": "1.5.2",
"author": "Deno Land Inc",
"license": "MIT",
"type": "module",