Fix error that occurs when parsing TOML files that use dotted keys (#444)

* Add test for parsing TOML file with dotted keys

* Use smol-toml instead of toml for TOML parsing

* Run build-dist
This commit is contained in:
Mitchell Henke
2026-03-30 04:53:57 -05:00
committed by GitHub
parent 92dab893ed
commit 190c3a5e7b
5 changed files with 1137 additions and 4080 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import * as tc from '@actions/tool-cache'
import * as semver from 'semver'
import * as csv from 'csv-parse/sync'
import _ from 'lodash'
import toml from 'toml'
import toml from 'smol-toml'
const __dirname = path.dirname(fileURLToPath(import.meta.url))