diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2024-01-06 00:03:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-05 15:03:06 +0000 |
commit | e7e25db24f5dc47c5cc8268453ec9a098eb99e36 (patch) | |
tree | ccfc9680968a2768e87b708b67772ac517cb442b /tools/util.js | |
parent | 9f86705fa64db7c1569f9244673e97376ae75782 (diff) |
chore: update deno_lint for CI (#21802)
Diffstat (limited to 'tools/util.js')
-rw-r--r-- | tools/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/util.js b/tools/util.js index e123b828b..92d8da967 100644 --- a/tools/util.js +++ b/tools/util.js @@ -14,7 +14,7 @@ export { delay } from "../test_util/std/async/delay.ts"; // [toolName] --version output const versions = { - "dlint": "dlint 0.51.0", + "dlint": "dlint 0.52.2", }; const compressed = new Set(["ld64.lld", "rcodesign"]); @@ -175,7 +175,7 @@ export function getPrebuiltToolPath(toolName) { return join(PREBUILT_TOOL_DIR, toolName + executableSuffix); } -const commitId = "c249f61eaed67db26c2934b195dc51e3ab91ae03"; +const commitId = "5f2097d8247c7fbe30ba227f894d70ae5c1524c7"; const downloadUrl = `https://raw.githubusercontent.com/denoland/deno_third_party/${commitId}/prebuilt/${platformDirName}`; |