From 2785d133baf821a0798c5622aa02b6e8a5d56663 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Sun, 28 Jan 2024 15:12:59 +0300 Subject: [PATCH] Update lint.yaml --- .github/workflows/lint.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index c396be4..01c6a82 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -9,11 +9,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Download schema - run: wget http://josm.openstreetmap.de/tagging-preset-1.0 + run: wget -O tagging-preset.xsd http://josm.openstreetmap.de/tagging-preset-1.0 - name: Enable annotations for validation errors and warnings uses: korelstar/xmllint-problem-matcher@v1 - name: Validate russian_shops.xml using XML schema tagging-preset.xsd uses: ChristophWurst/xmllint-action@v1 with: xml-file: ./russian_shops.xml - xml-schema-file: ./appinfo/tagging-preset.xsd + xml-schema-file: ./tagging-preset.xsd