Skip to content

Commit 324b227

Browse files
committed
Update GitHub Actions
1 parent dc3bb1a commit 324b227

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [ 8.2, 8.1 ]
17-
stability: [ prefer-lowest, prefer-stable ]
16+
php: ["8.3", "8.2", "8.1"]
17+
stability: ["prefer-lowest", "prefer-stable"]
1818

1919
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2424

2525
- name: Setup PHP
2626
uses: shivammathur/setup-php@v2
@@ -30,10 +30,10 @@ jobs:
3030
coverage: xdebug
3131

3232
- name: Install dependencies
33-
uses: nick-invision/retry@v1
33+
uses: nick-fields/retry@v3
3434
with:
35-
timeout_minutes: 5
36-
max_attempts: 5
35+
timeout_minutes: 3
36+
max_attempts: 3
3737
command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
3838

3939
- name: Execute phpcs
@@ -43,4 +43,4 @@ jobs:
4343
run: php vendor/bin/phpunit
4444

4545
- name: Code coverage
46-
uses: codecov/codecov-action@v1
46+
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)