PES-2647: float display fix in order modal #246
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: Composer security audit | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
audit: | |
name: Run composer security audit | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
- name: Validate PHP Version | |
run: php -v | |
- name: Running composer security audit | |
shell: bash | |
run: | | |
composer install | |
composer audit | |
composer install --working-dir=deps-composer | |
composer audit --working-dir=deps-composer |