Bump github/super-linter from 5 to 6 #22
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
--- | |
#################################################### | |
################ PHP Compatibility ################# | |
######## Save the contents of this file as ######### | |
## '.github/workflows/php-compatibility-7.4.yaml' ## | |
#################################################### | |
name: PHP 7.4 | |
on: | |
push: | |
pull_request: | |
branches: [master, main] | |
permissions: | |
contents: read | |
jobs: | |
setup: | |
name: Scan Code | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read # for checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: PHP Setup | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '7.4-' | |
ini-values: short_open_tag=On | |
coverage: none | |
- name: Run PHP Compatibility 7.4 | |
uses: pantheon-systems/phpcompatibility-action@v1 | |
with: | |
test-versions: '7.4-' | |
# Specify directories to check | |
paths: ${{ github.workspace }}/Plugin.php ${{ github.workspace }}/Locale/ ${{ github.workspace }}/Template/ |