Skip to content

security

security #98

Workflow file for this run

name: security
on:
push:
branches:
- 'gh-pages'
pull_request:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
permissions:
contents: read
jobs:
security:
name: Security on PHP ${{ matrix.php-version }} (Ubuntu 24.04)
runs-on: ubuntu-24.04
strategy:
matrix:
php-version:
- '8.4'
steps:
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@bf6b4fbd49ca58e4608c9c89fba0b8d90bd2a39f
with:
php-version: ${{ matrix.php-version }}
- name: Checkout Repository
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- name: Install Dependencies
run: composer install --prefer-dist --no-interaction --no-progress --dev
- name: Run Composer Audit
run: composer audit