Skip to content

Commit f2a3194

Browse files
committed
fix: update CI workflow for PHP 8.4
- Update actions/checkout to v4 - Replace ramsey/composer-install with direct composer install - Remove stale feature/saloon-v2 branch trigger
1 parent 8f127da commit f2a3194

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/phpstan.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- 'main'
7-
- 'feature/saloon-v2'
87
pull_request:
98
branches:
109
- '*'
@@ -14,16 +13,16 @@ jobs:
1413
name: phpstan
1514
runs-on: ubuntu-latest
1615
steps:
17-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1817

1918
- name: Setup PHP
2019
uses: shivammathur/setup-php@v2
2120
with:
22-
php-version: '8.3'
21+
php-version: '8.4'
2322
coverage: none
2423

2524
- name: Install composer dependencies
26-
uses: ramsey/composer-install@v2
25+
run: composer install --no-interaction --prefer-dist
2726

2827
- name: Run PHPStan
29-
run: ./vendor/bin/phpstan analyse --error-format=github
28+
run: ./vendor/bin/phpstan analyse --error-format=github

0 commit comments

Comments
 (0)