Skip to content

Security

Security #11

Workflow file for this run

name: Security
on:
push:
branches: [master, main]
pull_request:
schedule:
- cron: "0 3 * * 1" # Weekly on Mondays
jobs:
audit:
name: Composer security audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.4"
extensions: mysqli
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run Composer audit
run: composer audit --format=plain