Skip to content

Commit 64a020c

Browse files
authored
Merge pull request #802 from Automattic/feature/ghactions-minor-tweaks
GH Actions: minor tweaks
2 parents fbcc951 + 6c9995e commit 64a020c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/basics.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
4141
# Show XML violations inline in the file diff.
4242
# @link https://github.com/marketplace/actions/xmllint-problem-matcher
43-
- uses: korelstar/xmllint-problem-matcher@v1
43+
- name: Enable showing XML issues inline
44+
uses: korelstar/xmllint-problem-matcher@v1
4445

4546
# Validate the composer.json file.
4647
# @link https://getcomposer.org/doc/03-cli.md#validate
@@ -52,7 +53,7 @@ jobs:
5253
run: composer require --no-update --no-scripts squizlabs/php_codesniffer:"dev-master" --no-interaction
5354

5455
# Install dependencies and handle caching in one go.
55-
# @link https://github.com/marketplace/actions/install-composer-dependencies
56+
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
5657
- name: Install Composer dependencies
5758
uses: "ramsey/composer-install@v2"
5859
with:
@@ -95,7 +96,7 @@ jobs:
9596

9697
# Install dependencies and handle caching in one go.
9798
# Dependencies need to be installed to make sure the PHPCS and PHPUnit classes are recognized.
98-
# @link https://github.com/marketplace/actions/install-composer-dependencies
99+
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
99100
- name: Install Composer dependencies
100101
uses: "ramsey/composer-install@v2"
101102
with:

.github/workflows/quicktest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
coverage: none
5353

5454
# Install dependencies and handle caching in one go.
55-
# @link https://github.com/marketplace/actions/install-composer-dependencies
55+
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
5656
- name: Install Composer dependencies - normal
5757
if: ${{ startsWith( matrix.php, '8' ) == false && matrix.php != 'latest' }}
5858
uses: "ramsey/composer-install@v2"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
wp-coding-standards/wpcs:"dev-develop"
124124
125125
# Install dependencies and handle caching in one go.
126-
# @link https://github.com/marketplace/actions/install-composer-dependencies
126+
# @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
127127
- name: Install Composer dependencies - normal
128128
if: ${{ startsWith( matrix.php, '8' ) == false }}
129129
uses: "ramsey/composer-install@v2"

0 commit comments

Comments
 (0)