Update pestphp/pest requirement from ^1.20 || ^2.0 to ^3.3.0 #61
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: normalize composer.json | |
on: | |
push: | |
paths: | |
- "composer.json" | |
jobs: | |
normalize: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: normalize composer.json | |
run: | | |
composer global config --no-plugins allow-plugins.ergebnis/composer-normalize true | |
composer global require ergebnis/composer-normalize | |
composer normalize | |
- uses: stefanzweifel/git-auto-commit-action@v5.0.1 | |
with: | |
commit_message: normalize composer.json |