From 9ecec7b2486300e4aa63172ed870b838be72e17c Mon Sep 17 00:00:00 2001 From: MDW Date: Tue, 14 Jul 2026 13:50:39 +0200 Subject: [PATCH] Qual: Update logToCheckStyle (now extracts PHP Lint error msg) (#39169) # Qual: Update logToCheckStyle (now extracts PHP Lint error msg) logToCheckStyle was updated to extract PHP Lint (php -l) errors. So they will show in the summary report and as annotations. --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/windows-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 8098dc970c9..3ab7757a732 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -157,7 +157,7 @@ jobs: ls -l ~/.cache/pre-commit/ - name: Convert Raw Log to Annotations - uses: mdeweerd/logToCheckStyle@v2025.11.2 + uses: mdeweerd/logToCheckStyle@v2026.7.1 if: ${{ failure() }} with: in: ${{ env.RAW_LOG }} diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index 5215886e9ab..a1a42ceecaa 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -192,7 +192,7 @@ jobs: for /f "tokens=2 delims==" %%A in ('doskey /m:err') do EXIT /B %%A - name: Convert Raw Log to Annotations - uses: mdeweerd/logToCheckStyle@v2025.11.2 + uses: mdeweerd/logToCheckStyle@v2026.7.1 if: ${{ failure() }} with: in: ${{ env.PHPUNIT_LOG }}