1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Github workflows: Fix issue running XML validation workflow by using fixed version of fast-xml-parser 4.5.2

latest version 5.x of fast-xml-parser causes described in https://github.com/veracrypt/VeraCrypt/pull/1497#issuecomment-2671395468
This commit is contained in:
Mounir IDRASSI
2025-02-20 16:05:39 +01:00
parent fc7037b670
commit 865ee6c429

View File

@@ -31,6 +31,6 @@ jobs:
with:
node-version: 'latest'
- name: Install fast-xml-parser
run: npm install fast-xml-parser -g
run: npm install fast-xml-parser@4.5.2 -g
- name: Run XML validator script
run: ${{ github.workspace }}/.github/workflows/xmlvalidate.sh "${{ github.workspace }}"