diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1a9be7f..b542ced 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,7 +14,7 @@ updates: prefix: "chore" include: "scope" labels: - - "area: dependencies" + - "dependencies" # Enable version updates for GitHub Actions - package-ecosystem: "github-actions" @@ -30,5 +30,5 @@ updates: prefix: "chore" include: "scope" labels: - - "area: dependencies" - - "area: ci/cd" \ No newline at end of file + - "dependencies" + - "github-actions" \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24ba40f..bff0e35 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -174,6 +174,6 @@ jobs: - name: Upload Snyk results to GitHub Code Scanning continue-on-error: true - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 with: sarif_file: snyk.sarif diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d54ebb..e00eca2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,8 +39,8 @@ jobs: id: semantic with: # https://github.com/semantic-release/commit-analyzer/issues/65 + # https://github.com/romap0/semantic-release-unsquash/issues/7 extra_plugins: | - semantic-release-unsquash@latest @semantic-release/changelog@latest @semantic-release/git@latest conventional-changelog-conventionalcommits@latest diff --git a/.releaserc.json b/.releaserc.json index b58ded9..fe239f2 100644 --- a/.releaserc.json +++ b/.releaserc.json @@ -7,7 +7,6 @@ } ], "plugins": [ - "semantic-release-unsquash", [ "@semantic-release/changelog", { diff --git a/composer.json b/composer.json index 58b701a..0d237bf 100644 --- a/composer.json +++ b/composer.json @@ -72,10 +72,11 @@ "analysis": "@check --tasks=phpstan", "check": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/grumphp -- run", "ci": "@check --no-interaction", - "lint": "@check --tasks=phpcsfixer,phplint,phpstan,rector", + "lint": "@check --tasks=phpcsfixer,phplint,rector", "quality": "@check --tasks=phpmnd,phpparser", + "rector": "@php -d max_execution_time=0 -d memory_limit=-1 -f ./vendor/bin/rector -- process --ansi --clear-cache", "security": "@check --tasks=securitychecker_roave", "test": "@check --tasks=phpunit", - "test:coverage": "vendor/bin/phpunit --coverage-clover=coverage.xml" + "test:coverage": "@php -d max_execution_time=0 -d memory_limit=-1 ./vendor/bin/phpunit --coverage-clover=coverage.xml" } } diff --git a/grumphp.yml.dist b/grumphp.yml.dist index 2ebd81d..b79acbc 100644 --- a/grumphp.yml.dist +++ b/grumphp.yml.dist @@ -65,10 +65,10 @@ grumphp: # Psalm - Additional Static Analysis #FIXME - Temporarily disabled for PHP 8.4 compatibility - # psalm: - # config: psalm.xml.dist - # ignore_patterns: ['vendor'] - # threads: 4 + #psalm: + # config: psalm.xml.dist + # ignore_patterns: ['vendor'] + # threads: 4 # Rector - Automated Refactoring rector: ~