From a1060ea259693aacafa47f580233966c0f605d2a Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 14 Nov 2023 03:25:35 +0100 Subject: [PATCH] GH Actions: minor tweaks * Update a URL which is no longer valid. * Ensure all steps have a name. --- .github/workflows/csqa.yml | 7 ++++--- .github/workflows/test.yml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/csqa.yml b/.github/workflows/csqa.yml index 947bd28..f0aa3cc 100644 --- a/.github/workflows/csqa.yml +++ b/.github/workflows/csqa.yml @@ -40,7 +40,7 @@ jobs: run: composer require --no-update squizlabs/php_codesniffer:"dev-master" # Install dependencies and handle caching in one go. - # @link https://github.com/marketplace/actions/install-composer-dependencies + # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies uses: "ramsey/composer-install@v2" with: @@ -54,7 +54,8 @@ jobs: # Show XML violations inline in the file diff. # @link https://github.com/marketplace/actions/xmllint-problem-matcher - - uses: korelstar/xmllint-problem-matcher@v1 + - name: Enable showing XML issues inline + uses: korelstar/xmllint-problem-matcher@v1 # Validate the XML file. # @link http://xmlsoft.org/xmllint.html @@ -90,7 +91,7 @@ jobs: # Install dependencies and handle caching in one go. # Dependencies need to be installed to make sure the PHPUnit classes are recognized. - # @link https://github.com/marketplace/actions/install-composer-dependencies + # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies uses: "ramsey/composer-install@v2" with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1da3e50..f37bc29 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -91,7 +91,7 @@ jobs: composer require --no-update squizlabs/php_codesniffer:"${{ matrix.phpcs_version }}" # Install dependencies and handle caching in one go. - # @link https://github.com/marketplace/actions/install-composer-dependencies + # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies - normal if: ${{ matrix.php != '8.3' }} uses: "ramsey/composer-install@v2"