Merge pull request #93 from rogoit/main #15
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 Audit | |
on: | |
[push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Composer cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- uses: php-actions/composer@v6 | |
with: | |
php_version: "8.1" | |
php_extensions: zip imagick | |
memory_limit: 512M | |
- uses: php-actions/composer@v6 | |
with: | |
php_version: "8.1" | |
php_extensions: zip imagick | |
memory_limit: 512M | |
command: audit |