diff --git a/.github/workflows/behat.yml b/.github/workflows/behat.yml index 20265f8..e09d73f 100644 --- a/.github/workflows/behat.yml +++ b/.github/workflows/behat.yml @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index aa97679..d2af3d3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 542a427..7bc4d7d 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -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