From 369540068f54af8f03a5ff3c2fd2a4fc25fdc5d7 Mon Sep 17 00:00:00 2001 From: Russ Rutledge Date: Fri, 10 Jul 2026 14:27:47 -0500 Subject: [PATCH] Pin Vale to 3.14.2 to fix dicpath resolution regression Vale 3.15.0 (released 2026-06-12) changed vale sync to create and use the configured StylesPath instead of falling back to a global styles directory (errata-ai/vale#1105/#1106). That changed where the ISC style package's nested styles/ISC/Spelling.yml and styles/dictionaries land under .github/vale, breaking Spelling.yml's relative `dicpath: dictionaries` and failing every Spelling & Styles run since with "unable to resolve dicpath" - unrelated to any PR's content. 3.14.2 was the last version where sync resolved dicpath correctly. --- .github/workflows/vale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index c450d2cd2..d2a938687 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -27,3 +27,4 @@ jobs: vale_flags: "--glob=*.md" filter_mode: added debug: true + version: 3.14.2