Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Nov 16, 2024
1 parent 1231248 commit 91c61a4
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.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 91c61a4

Please sign in to comment.