Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

chore(deps): update github actions #37

chore(deps): update github actions

chore(deps): update github actions #37

name: "Security: Dependencies"
on:
push:
paths:
- composer.lock
- .github/workflows/security-dependencies.yml
pull_request:
paths:
- composer.lock
schedule:
- cron: "0 9 * * 3" # Run weekly on Wednesdays at 9 AM UTC
jobs:
audit:
name: "Vulnerability Scan"
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Setup PHP
uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f # 2.35.3
with:
php-version: "8.3"
tools: composer:v2
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run security audit
run: composer audit