Fix revision history tables in documentation and resolve CI workflow errors #35
1
.github/workflows/php_quality.yml
vendored
1
.github/workflows/php_quality.yml
vendored
@@ -108,6 +108,7 @@ jobs:
|
||||
env:
|
||||
COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
|
||||
run: |
|
||||
composer global config --no-plugins allow-plugins.phpstan/extension-installer true
|
||||
composer global require phpstan/phpstan "^1.0" --with-all-dependencies
|
||||
|
|
||||
composer global require phpstan/extension-installer "^1.0" --with-all-dependencies
|
||||
|
||||
|
||||
Reference in New Issue
Block a user
The cache key uses
hashFiles('**/composer.lock')but there is no composer.lock file in this repository. This means the hash will always return an empty string, making the cache key effectively${{ runner.os }}-composer-phpstan-${{ matrix.php-version }}-, which is the same as the restore-key. This doesn't break functionality but makes the cache key less specific than intended. Since this is a global composer installation (not project-specific), consider either removing the hashFiles part or using a static cache key.