From 232f6e37c69dc16fedcc753572b25396eb9c8c5f Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Wed, 27 Aug 2025 09:30:41 +0200 Subject: [PATCH] Ensure pipeline is not marked as failed if only v8.5 fails --- .github/workflows/ci-db-tests.yml | 2 +- .github/workflows/ci-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-db-tests.yml b/.github/workflows/ci-db-tests.yml index 82b08317..28ec4fd6 100644 --- a/.github/workflows/ci-db-tests.yml +++ b/.github/workflows/ci-db-tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: php-version: ['8.3', '8.4', '8.5'] - continue-on-error: ${{ inputs.php-version == '8.5' }} + continue-on-error: ${{ matrix.php-version == '8.5' }} env: LC_ALL: C steps: diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 9220573d..1b196ac1 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: php-version: ['8.3', '8.4', '8.5'] - continue-on-error: ${{ inputs.php-version == '8.5' }} + continue-on-error: ${{ matrix.php-version == '8.5' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # rr get-binary picks this env automatically steps: