Call search on focus if input not empty and search not called yet #252
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: Security | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ['7.4', '8.0', '8.1'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
ini-values: date.timezone=UTC | |
- name: Set project php-version | |
run: | | |
echo "${{ matrix.php }}" > .php-version | |
- uses: actions/cache@v1 | |
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@v2 | |
- name: Install PHP dependencies | |
run: composer update --prefer-dist | |
- uses: symfonycorp/security-checker-action@v3 |