From 2f207d45926f2046bf9d4722e9984d33ef87f94f Mon Sep 17 00:00:00 2001 From: noboru-kudo Date: Sun, 26 Jan 2025 10:32:08 +0900 Subject: [PATCH] ci: Update build script to always use latest Deno version Removed the hardcoded Deno version in the Netlify build script to ensure it always upgrades to the latest available version. This improves maintainability and ensures compatibility with the latest Deno features and fixes. --- build-netlify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-netlify.sh b/build-netlify.sh index e56dff2b7..89824637c 100755 --- a/build-netlify.sh +++ b/build-netlify.sh @@ -4,7 +4,7 @@ echo "Starting Deno build task..." deno --version -deno upgrade 2.1.7 +deno upgrade # Running Deno task deno task build