Update dependency sebastian/recursion-context to v8 - autoclosed #1142
Workflow file for this run
This file contains hidden or 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: "Backwards compatibility check" | |
| on: | |
| pull_request: | |
| jobs: | |
| bc-check: | |
| name: "Backwards compatibility check" | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v6.0.2" | |
| with: | |
| fetch-depth: 0 | |
| - name: "Install PHP" | |
| uses: "shivammathur/setup-php@2.36.0" | |
| with: | |
| php-version: "8.3" | |
| ini-values: memory_limit=-1 | |
| tools: composer:v2, cs2pr | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "composer_cache_dir=$(composer global config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: "Cache dependencies" | |
| uses: "actions/cache@v5.0.3" | |
| with: | |
| path: ${{ steps.composer-cache.outputs.composer_cache_dir }} | |
| key: "php-8.3-bc-break-check-${{ hashFiles('.github/workflows/backwards-compatibility.yml') }}" | |
| restore-keys: "php-8.3-bc-break-check-" | |
| - name: "Install dependencies" | |
| run: composer global require roave/backward-compatibility-check | |
| - name: "BC Check" | |
| run: | | |
| ~/.composer/vendor/bin/roave-backward-compatibility-check --from=${{ github.event.pull_request.base.sha }} --format=github-actions |