VeraCrypt
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2025-02-20 16:05:39 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2025-02-20 16:05:39 +0100
commit865ee6c4291134ba0b7d52b650e97f0b3a3ba4a1 (patch)
tree76682856ab729f400cff68fa455639f100f861b8
parentfc7037b670fd55b9b199a5a1ee76f7bdee2bc816 (diff)
downloadVeraCrypt-master.tar.gz
VeraCrypt-master.zip
Github workflows: Fix issue running XML validation workflow by using fixed version of fast-xml-parser 4.5.2HEADmaster
latest version 5.x of fast-xml-parser causes described in https://github.com/veracrypt/VeraCrypt/pull/1497#issuecomment-2671395468
-rw-r--r--.github/workflows/xmlvalidate.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/xmlvalidate.yml b/.github/workflows/xmlvalidate.yml
index 951a934e..7d3cbaa2 100644
--- a/.github/workflows/xmlvalidate.yml
+++ b/.github/workflows/xmlvalidate.yml
@@ -29,8 +29,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
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 }}"