Skip to content

Commit 5c58f19

Browse files
committed
Upgrade Deno from 2.7.7 to 2.7.12
Updates mise.toml and .github/actions/setup-deno/action.yaml to use Deno 2.7.12. Also excludes SVG and HTML files from the Deno formatter in deno.json, as Deno 2.7.12's formatter is not idempotent on these files. Assisted-by: Claude Code:claude-sonnet-4-6
1 parent 3b4b0e5 commit 5c58f19

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/actions/setup-deno/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ runs:
66
steps:
77
- uses: denoland/setup-deno@v2
88
with:
9-
deno-version: 2.7.7 # Keep in sync with mise.toml
9+
deno-version: 2.7.12 # Keep in sync with mise.toml

deno.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@
9898
},
9999
"fmt": {
100100
"exclude": [
101-
"**/*.md"
101+
"**/*.html",
102+
"**/*.md",
103+
"**/*.svg"
102104
]
103105
},
104106
"nodeModulesDir": "auto",

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tools]
22
bun = "1.2.22"
3-
deno = "2.7.7"
3+
deno = "2.7.12"
44
node = "22"
55
pnpm = "10.28.0"
66

0 commit comments

Comments
 (0)