Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit

Permalink
Stop building php 8.1 and 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Oct 16, 2024
1 parent 21af793 commit b1d4a5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
php: ['8.1', '8.2', '8.3']
continue-on-error: ${{ matrix.php == '8.3' }}
php: ['8.3', '8.4']
continue-on-error: ${{ matrix.php == '8.4' }}
steps:
- uses: actions/checkout@v4

Expand All @@ -26,15 +26,15 @@ jobs:
run: composer validate

- name: Install dependencies
if: ${{ matrix.php != '8.3' }}
if: ${{ matrix.php != '8.4' }}
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: composer update --no-interaction --no-progress

- name: Install Dependencies (ignore platform)
if: ${{ matrix.php == '8.3' }}
if: ${{ matrix.php == '8.4' }}
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
Expand Down

0 comments on commit b1d4a5c

Please sign in to comment.