diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-02-20 16:05:39 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2025-02-20 16:05:39 +0100 |
commit | 865ee6c4291134ba0b7d52b650e97f0b3a3ba4a1 (patch) | |
tree | 76682856ab729f400cff68fa455639f100f861b8 | |
parent | fc7037b670fd55b9b199a5a1ee76f7bdee2bc816 (diff) | |
download | VeraCrypt-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.yml | 2 |
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 | |||
@@ -31,6 +31,6 @@ jobs: | |||
31 | with: | 31 | with: |
32 | node-version: 'latest' | 32 | node-version: 'latest' |
33 | - name: Install fast-xml-parser | 33 | - name: Install fast-xml-parser |
34 | run: npm install fast-xml-parser -g | 34 | run: npm install fast-xml-parser@4.5.2 -g |
35 | - name: Run XML validator script | 35 | - name: Run XML validator script |
36 | run: ${{ github.workspace }}/.github/workflows/xmlvalidate.sh "${{ github.workspace }}" | 36 | run: ${{ github.workspace }}/.github/workflows/xmlvalidate.sh "${{ github.workspace }}" |