Skip to content

Commit 0353ed5

Browse files
committed
GH Actions/securitycheck: only run against PHP 5.4
As of Composer 2.9, using this type of security check is no longer needed as Composer will now natively block installation of known insecure versions of dependencies. However, Composer 2.9 requires PHP 7.2, so we should continue to run the security check for PHP 5.4 for the time being, but we can stop running the check against PHP "latest". Refs: * https://blog.packagist.com/composer-2-9/ * https://github.com/composer/composer/releases/tag/2.9.0
1 parent 845eb62 commit 0353ed5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/securitycheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
strategy:
2525
matrix:
26-
php: ['5.4', 'latest']
26+
php: ['5.4']
2727

2828
steps:
2929
- name: Checkout code

0 commit comments

Comments
 (0)