Skip to content

Commit

Permalink
GH Actions: update for the release of PHP 8.3
Browse files Browse the repository at this point in the history
... which is expected later today.
  • Loading branch information
jrfnl committed Nov 23, 2023
1 parent 9ee7c0a commit 336c183
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/php-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
strategy:
fail-fast: true
matrix:
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
dependency-versions: ['lowest', 'highest']

include:
- php-versions: '8.3'
- php-versions: '8.4'
dependency-versions: 'highest'

continue-on-error: ${{ matrix.php-versions == '8.3' }}
continue-on-error: ${{ matrix.php-versions == '8.4' }}

steps:
- uses: actions/checkout@v4
Expand All @@ -44,15 +44,15 @@ jobs:
run: parallel-lint ./src/ ./tests/

- name: Install dependencies - normal
if: ${{ matrix.php-versions != '8.3' }}
if: ${{ matrix.php-versions != '8.4' }}
uses: "ramsey/composer-install@v2"
with:
dependency-versions: ${{ matrix.dependency-versions }}
# Bust the cache at least once a month - output format: YYYY-MM.
custom-cache-suffix: $(date -u "+%Y-%m")

- name: Install dependencies - ignore-platform-reqs
if: ${{ matrix.php-versions == '8.3' }}
if: ${{ matrix.php-versions == '8.4' }}
uses: "ramsey/composer-install@v2"
with:
dependency-versions: ${{ matrix.dependency-versions }}
Expand Down

0 comments on commit 336c183

Please sign in to comment.