File tree 4 files changed +10
-9
lines changed
4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - uses : srvaroa/labeler@master
16
- env :
17
- GITHUB_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
15
+ - uses : srvaroa/labeler@master
16
+ env :
17
+ GITHUB_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change 35
35
36
36
# Install dependencies and handle caching in one go.
37
37
# Dependencies need to be installed to make sure the PHPUnit classes are recognized.
38
- # @link https://github.com/marketplace/actions/install-composer -dependencies
38
+ # @link https://github.com/marketplace/actions/install-php -dependencies-with-composer
39
39
- name : Install Composer dependencies
40
40
uses : " ramsey/composer-install@v2"
41
41
with :
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130
130
jshint
131
131
132
132
# Install dependencies and handle caching in one go.
133
- # @link https://github.com/marketplace/actions/install-composer -dependencies
133
+ # @link https://github.com/marketplace/actions/install-php -dependencies-with-composer
134
134
- name : Install Composer dependencies - normal
135
135
if : ${{ matrix.php < '8.0' }}
136
136
uses : " ramsey/composer-install@v2"
@@ -143,7 +143,7 @@ jobs:
143
143
if : ${{ matrix.php >= '8.0' }}
144
144
uses : " ramsey/composer-install@v2"
145
145
with :
146
- composer-options : --ignore-platform-reqs
146
+ composer-options : --ignore-platform-req=php+
147
147
custom-cache-suffix : $(date -u "+%Y-%m")
148
148
149
149
# Note: The code style check is run multiple times against every PHP version
Original file line number Diff line number Diff line change @@ -29,16 +29,17 @@ jobs:
29
29
uses : actions/checkout@v3
30
30
31
31
- name : Install xmllint
32
- run : |
33
- sudo apt-get update
32
+ run : |
33
+ sudo apt-get update
34
34
sudo apt-get install --no-install-recommends -y libxml2-utils
35
35
36
36
- name : Retrieve XML Schema
37
37
run : curl -O https://www.w3.org/2012/04/XMLSchema.xsd
38
38
39
39
# Show XML violations inline in the file diff.
40
40
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
41
- - uses : korelstar/xmllint-problem-matcher@v1
41
+ - name : Enable showing XML issues inline
42
+ uses : korelstar/xmllint-problem-matcher@v1
42
43
43
44
# Validate the XML ruleset files.
44
45
# @link http://xmlsoft.org/xmllint.html
You can’t perform that action at this time.
0 commit comments