From fd9bdcafb20d774045b26dfbfb88f8838dc6b022 Mon Sep 17 00:00:00 2001 From: Syndesi Date: Sun, 3 Dec 2023 10:50:11 +0100 Subject: [PATCH] Upgrade CI tasks. --- .github/workflows/ci-code-style.yml | 2 +- .github/workflows/ci-leak-test.yml | 2 +- .github/workflows/ci-mutant-test.yml | 4 ++-- .github/workflows/ci-phpstan.yml | 2 +- .github/workflows/ci-psalm.yml | 2 +- .github/workflows/ci-unit-test-coverage.yml | 2 +- .github/workflows/ci-unit-test.yml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-code-style.yml b/.github/workflows/ci-code-style.yml index 7520e3f..5c52e29 100644 --- a/.github/workflows/ci-code-style.yml +++ b/.github/workflows/ci-code-style.yml @@ -18,7 +18,7 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} - uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.3' tools: composer:v2 - run: composer install --dev shell: bash diff --git a/.github/workflows/ci-leak-test.yml b/.github/workflows/ci-leak-test.yml index f9f15e8..538c5a2 100644 --- a/.github/workflows/ci-leak-test.yml +++ b/.github/workflows/ci-leak-test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['8.0', '8.1'] + php-version: ['8.1', '8.2', '8.3'] steps: - uses: actions/checkout@v2 - name: Cache Composer dependencies diff --git a/.github/workflows/ci-mutant-test.yml b/.github/workflows/ci-mutant-test.yml index 552041e..124615e 100644 --- a/.github/workflows/ci-mutant-test.yml +++ b/.github/workflows/ci-mutant-test.yml @@ -8,7 +8,7 @@ on: jobs: tests: runs-on: ubuntu-latest - name: "Running mutant tests for PHP 8.1" + name: "Running mutant tests" steps: - uses: actions/checkout@v2 - name: Cache Composer dependencies @@ -18,7 +18,7 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} - uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.3' tools: composer:v2 - run: composer install shell: bash diff --git a/.github/workflows/ci-phpstan.yml b/.github/workflows/ci-phpstan.yml index 09e121b..1babe2c 100644 --- a/.github/workflows/ci-phpstan.yml +++ b/.github/workflows/ci-phpstan.yml @@ -18,7 +18,7 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} - uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.3' tools: composer:v2 - run: composer install shell: bash diff --git a/.github/workflows/ci-psalm.yml b/.github/workflows/ci-psalm.yml index 6232a94..cab835b 100644 --- a/.github/workflows/ci-psalm.yml +++ b/.github/workflows/ci-psalm.yml @@ -18,7 +18,7 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} - uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.3' tools: composer:v2 - run: composer install shell: bash diff --git a/.github/workflows/ci-unit-test-coverage.yml b/.github/workflows/ci-unit-test-coverage.yml index afdf81d..1fa7e65 100644 --- a/.github/workflows/ci-unit-test-coverage.yml +++ b/.github/workflows/ci-unit-test-coverage.yml @@ -20,7 +20,7 @@ jobs: key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} - uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.3' extensions: xdebug tools: composer:v2 - run: composer install diff --git a/.github/workflows/ci-unit-test.yml b/.github/workflows/ci-unit-test.yml index 22055dc..1c3b5f3 100644 --- a/.github/workflows/ci-unit-test.yml +++ b/.github/workflows/ci-unit-test.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: ['8.0', '8.1', '8.2-rc'] + php-version: ['8.1', '8.2', '8.3'] steps: - uses: actions/checkout@v2 - name: Cache Composer dependencies