From 8ecc704cd9e221a88255733dbf3d1d5686e90eeb Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Wed, 16 Sep 2020 09:02:03 +0200 Subject: [PATCH] Fetch XSD for xliff from official source --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2966eb6..6d90120 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -83,10 +83,10 @@ jobs: run: xmllint --schema vendor/squizlabs/php_codesniffer/phpcs.xsd --noout phpcs.xml.dist - name: Fetch schema for xliff - run: wget https://raw.githubusercontent.com/TYPO3-Documentation/tea/master/.github/build/xliff-core-1.2-strict.xsd --output-document=.Build/xliff-core-1.2.xsd + run: wget https://docs.oasis-open.org/xliff/v1.2/os/xliff-core-1.2-strict.xsd --output-document=.Build/xliff-core-1.2-strict.xsd - name: TYPO3 language files - run: xmllint --schema .Build/xliff-core-1.2.xsd --noout $(find Resources -name '*.xlf') + run: xmllint --schema .Build/xliff-core-1.2-strict.xsd --noout $(find Resources -name '*.xlf') coding-guideline: runs-on: ubuntu-latest