Bug 1753211 - switch yaml v4 call from `safeLoad` to `load` to fix Custom Actions (#7372)

yaml v4 made the `load` function safe and dropped the `safeLoad` one. The update
to yaml v4 had landed in
933d8dfb69
This commit is contained in:
Sebastian Hengst 2022-02-03 04:44:54 +01:00 коммит произвёл GitHub
Родитель 5263e20476
Коммит bd8e9f95e5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -131,7 +131,7 @@ class CustomJobActions extends React.PureComponent {
let input = null;
if (validate && payload) {
try {
input = jsyaml.safeLoad(payload);
input = jsyaml.load(payload);
} catch (e) {
this.setState({ triggering: false });
notify(`YAML Error: ${e.message}`, 'danger');