Skip to content

Commit 8b97d7c

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents e428ff0 + ab7ff9b commit 8b97d7c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/phan.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616

1717
- name: Setup PHP
18-
uses: shivammathur/setup-php@0f7f1d08e3e32076e51cae65eb0b0c871405b16e # v2.34.1
18+
uses: shivammathur/setup-php@ccf2c627fe61b1b4d924adfcbd19d661a18133a0 # v2.35.2
1919
with:
2020
php-version: '8.4'
21-
tools: phan
21+
tools: phan:5.5.1
2222
coverage: none
2323

2424
- name: Restore cached baseline for Phan
@@ -36,9 +36,9 @@ jobs:
3636
run: |
3737
if [ -f test/phan-baseline.php ]; then
3838
echo "Cached baseline for Phan is found. Running Phan with baseline."
39-
phan -d ./ -k .phan/config.php --load-baseline test/phan-baseline.php --no-progress-bar
39+
phan -d ./ -k .phan/config.php --load-baseline test/phan-baseline.php --output-mode=github --no-progress-bar
4040
else
4141
echo "Cached baseline for Phan is not found. Running Phan without baseline."
42-
phan -d ./ -k .phan/config.php --no-progress-bar
42+
phan -d ./ -k .phan/config.php --output-mode=github --no-progress-bar
4343
exit 0
4444
fi

0 commit comments

Comments
 (0)