Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: "Set up problem matchers for PHP"
run: "echo \"::add-matcher::${{ runner.tool_cache }}/php.json\""

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"

- name: Run EasyCodingStandard
run: vendor/bin/ecs check
Expand All @@ -55,7 +55,7 @@ jobs:
- name: "Set up problem matchers for PHP"
run: "echo \"::add-matcher::${{ runner.tool_cache }}/php.json\""

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"

- name: Run Rector
run: vendor/bin/rector --dry-run
Expand All @@ -75,7 +75,7 @@ jobs:
php-version-file: ".php-version"
extensions: intl, ctype, iconv

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"

- name: Run composer normalize
run: composer normalize --no-update-lock --diff --dry-run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:

steps:
- uses: actions/checkout@v6.0.2
- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"
- uses: symfonycorp/security-checker-action@v5
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: "Set up problem matchers for PHP"
run: "echo \"::add-matcher::${{ runner.tool_cache }}/php.json\""

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"

- name: Run PHPStan
run: vendor/bin/phpstan
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: "Set up problem matchers for phpunit/phpunit"
run: "echo \"::add-matcher::${{ runner.tool_cache }}/phpunit.json\""

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"

- name: Run test suite
run: vendor/bin/phpunit
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: "Set up problem matchers for phpunit/phpunit"
run: "echo \"::add-matcher::${{ runner.tool_cache }}/phpunit.json\""

- uses: "ramsey/composer-install@v3"
- uses: "ramsey/composer-install@v4"

- name: Run test suite
run: vendor/bin/phpunit --coverage-clover build/logs/clover.xml
Expand Down
Loading