test: add branch alias to allow install with page plugin #751
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: Security | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
security: | |
name: Security check (PHP ${{ matrix.php }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['8.1', '8.2'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: gd, intl, json | |
- name: Set project php-version | |
run: | | |
echo "${{ matrix.php }}" > .php-version | |
- uses: actions/cache@v3 | |
id: cache-composer | |
with: | |
path: /home/runner/.composer/cache | |
key: composer2-php:${{ matrix.php }}-${{ github.sha }} | |
restore-keys: composer2-php:${{ matrix.php }}- | |
- run: mkdir -p /home/runner/{.composer/cache,.config/composer} | |
- name: Composer Github Auth | |
run: composer config -g github-oauth.github.com ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- name: Install PHP dependencies | |
run: composer update --prefer-dist | |
- uses: symfonycorp/security-checker-action@v3 |