Fix PHP 8.4 deprecation notices #493
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: "Backwards compatibility check" | |
on: | |
pull_request: | |
jobs: | |
bc-check: | |
name: "Backwards compatibility check" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v2" | |
with: | |
fetch-depth: 0 | |
- name: Fix git safe.directory in container | |
run: mkdir -p /home/runner/work/_temp/_github_home && printf "[safe]\n\tdirectory = /github/workspace" > /home/runner/work/_temp/_github_home/.gitconfig | |
- name: "Backwards Compatibility Check" | |
uses: docker://nyholm/roave-bc-check-ga | |
with: | |
args: --from=${{ github.event.pull_request.base.sha }} |