File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313
1414 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 3535
3636 # Install dependencies and handle caching in one go.
3737 # 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
3939 - name : Install Composer dependencies
4040 uses : " ramsey/composer-install@v2"
4141 with :
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130130 jshint
131131
132132 # 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
134134 - name : Install Composer dependencies - normal
135135 if : ${{ matrix.php < '8.0' }}
136136 uses : " ramsey/composer-install@v2"
@@ -143,7 +143,7 @@ jobs:
143143 if : ${{ matrix.php >= '8.0' }}
144144 uses : " ramsey/composer-install@v2"
145145 with :
146- composer-options : --ignore-platform-reqs
146+ composer-options : --ignore-platform-req=php+
147147 custom-cache-suffix : $(date -u "+%Y-%m")
148148
149149 # 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:
2929 uses : actions/checkout@v3
3030
3131 - name : Install xmllint
32- run : |
33- sudo apt-get update
32+ run : |
33+ sudo apt-get update
3434 sudo apt-get install --no-install-recommends -y libxml2-utils
3535
3636 - name : Retrieve XML Schema
3737 run : curl -O https://www.w3.org/2012/04/XMLSchema.xsd
3838
3939 # Show XML violations inline in the file diff.
4040 # @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
4243
4344 # Validate the XML ruleset files.
4445 # @link http://xmlsoft.org/xmllint.html
You can’t perform that action at this time.
0 commit comments