diff --git a/.github/workflows/php-integration-tests.yml b/.github/workflows/php-integration-tests.yml index 8bc1032..3f13a32 100644 --- a/.github/workflows/php-integration-tests.yml +++ b/.github/workflows/php-integration-tests.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - php-service: [ '80', '81', '82' ] + php-service: [ '81', '82' ] steps: - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/php-static-analysis.yml b/.github/workflows/php-static-analysis.yml index 2f084cb..1bed93c 100644 --- a/.github/workflows/php-static-analysis.yml +++ b/.github/workflows/php-static-analysis.yml @@ -31,19 +31,19 @@ jobs: uses: inpsyde/reusable-workflows/.github/workflows/lint-php.yml@main if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run lint only')) }} with: - PHP_MATRIX: '["8.0", "8.1", "8.2"]' + PHP_MATRIX: '["8.1", "8.2"]' coding-standards-analysis-php: if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run PHPCS only')) }} uses: inpsyde/reusable-workflows/.github/workflows/coding-standards-php.yml@main with: - PHP_VERSION: '8.0' + PHP_VERSION: '8.1' static-code-analysis-php: if: ${{ (github.event_name != 'workflow_dispatch') || ((github.event.inputs.jobs == 'Run all') || (github.event.inputs.jobs == 'Run Psalm only')) }} uses: inpsyde/reusable-workflows/.github/workflows/static-analysis-php.yml@main strategy: matrix: - php-version: [ '8.0', '8.1', '8.2' ] + php-version: [ '8.1', '8.2' ] with: PHP_VERSION: ${{ matrix.php-version }}