diff --git a/scripts/test-github-actions.js b/scripts/test-github-actions.js index d6523d5f498..e369c837ebb 100755 --- a/scripts/test-github-actions.js +++ b/scripts/test-github-actions.js @@ -8,7 +8,7 @@ const yaml = require('js-yaml'); function parseYamlFile(file) { const fileContents = fs.readFileSync(file, 'utf8'); - return yaml.safeLoad(fileContents); + return yaml.load(fileContents); } function getKeyValuesFor(targetKey, yamlObject) {