Skip to content

Commit

Permalink
Say goodbye to PHP 7.4 and hello to PHP 8.3
Browse files Browse the repository at this point in the history
Signed-off-by: Vitor Mattos <vitor@php.rio>
  • Loading branch information
vitormattos committed Dec 9, 2023
1 parent baa2b19 commit 7024f5b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/behat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0' , '8.1', '8.2']
php-versions: ['8.0' , '8.1', '8.2', '8.3']

name: php${{ matrix.php-versions }}

steps:
- name: Checkout app
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4', '8.0' , '8.1']
php-versions: ['8.0' , '8.1', '8.2', '8.3']
include:
- php-versions: '8.2'
- php-versions: '8.3'
PHP_CS_FIXER_IGNORE_ENV: 1

name: php-cs check php${{ matrix.php-versions }}

steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Set up php
uses: shivammathur/setup-php@master
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4', '8.0' , '8.1', '8.2']
php-versions: ['8.0' , '8.1', '8.2', '8.3']

name: Psalm check

steps:
- name: Checkout
uses: actions/checkout@master
uses: actions/checkout@v4

- name: Set up php
uses: shivammathur/setup-php@master
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
Expand Down

0 comments on commit 7024f5b

Please sign in to comment.