Skip to content

Commit 7c54ff1

Browse files
Merge pull request #12 from falko/patch-2
Fix example in README.md
2 parents 36f2a30 + 8ed2a42 commit 7c54ff1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@master
33+
uses: actions/checkout@v4
3434
- name: Download schema
3535
run: wget https://apps.nextcloud.com/schema/apps/info.xsd
36-
- name: Lint info.xml
36+
- name: Validate info.xml using XML schema info.xsd
3737
uses: ChristophWurst/xmllint-action@v1
3838
with:
3939
xml-file: ./appinfo/info.xml
@@ -59,11 +59,12 @@ jobs:
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@master
62+
uses: actions/checkout@v4
6363
- name: Download schema
6464
run: wget https://apps.nextcloud.com/schema/apps/info.xsd
65-
- name: Lint info.xml
65+
- name: Enable annotations for validation errors and warnings
6666
uses: korelstar/xmllint-problem-matcher@v1
67+
- name: Validate info.xml using XML schema info.xsd
6768
uses: ChristophWurst/xmllint-action@v1
6869
with:
6970
xml-file: ./appinfo/info.xml

0 commit comments

Comments
 (0)