Skip to content

Commit d39efd4

Browse files
committed
ci: update PHPStan workflow
1 parent b314d10 commit d39efd4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/phpstan.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,24 @@ on:
55
paths:
66
- '**.php'
77
- 'phpstan.neon.dist'
8+
- '.github/workflows/phpstan.yml'
89

910
jobs:
1011
phpstan:
1112
name: phpstan
1213
runs-on: ubuntu-latest
14+
timeout-minutes: 5
1315
steps:
1416
- uses: actions/checkout@v4
1517

1618
- name: Setup PHP
1719
uses: shivammathur/setup-php@v2
1820
with:
19-
php-version: '8.1'
21+
php-version: '8.3'
2022
coverage: none
2123

2224
- name: Install composer dependencies
23-
uses: ramsey/composer-install@v2
25+
uses: ramsey/composer-install@v3
2426

2527
- name: Run PHPStan
2628
run: ./vendor/bin/phpstan --error-format=github

0 commit comments

Comments
 (0)