Skip to content

Commit e467aec

Browse files
committed
try fix the actions
1 parent ffdae4a commit e467aec

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
coverage: none
2323

2424
- name: Install composer dependencies
25-
uses: ramsey/composer-install@v3
25+
run: composer install --prefer-dist --no-progress --no-suggest --dev
2626

2727
- name: Run PHPStan
2828
run: ./vendor/bin/phpstan --error-format=github

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
4141
- name: Install dependencies
4242
run: |
43-
composer i --no-interaction --no-update
43+
composer i --no-interaction
4444
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4545
4646
- name: List Installed Dependencies

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"symfony/process": "^7.1"
2323
},
2424
"require-dev": {
25-
"illuminate/support": "*",
25+
"laravel/framework": "^11 || 10",
2626
"laravel/pint": "^1.14",
2727
"nunomaduro/collision": "^8.1.1||^7.10.0",
2828
"pestphp/pest": "^2.34",

tests/Dompurify/DompurifyServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,5 @@
7070
));
7171

7272
expect(fn () => $service->start())->toThrow(ProcessFailedException::class);
73-
expect($service->serviceProcess->getTermSignal() === 127);
73+
expect($service->serviceProcess->getTermSignal() === 127); // TODO https://github.com/medilies/xssless/actions/runs/10283025153/job/28455979969
7474
});

tests/Pest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@
1111
->setup();
1212
})
1313
->in(__DIR__.'/Dompurify');
14-

0 commit comments

Comments
 (0)