PHP Classes

File: .github/workflows/security.yml

Recommend this page to a friend!
  Packages of Nemeth Zoltan   Cards API PHP   .github/workflows/security.yml   Download  
File: .github/workflows/security.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Cards API PHP
Manage trading cards, decks, games, and creators
Author: By
Last change:
Date: 2 months ago
Size: 845 bytes
 

Contents

Class file image Download
name: Security on: pull_request: branches: [ main, develop ] schedule: - cron: '0 0 * * 0' # Weekly on Sunday at midnight jobs: security-check: name: Security Vulnerabilities Check runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: 8.3 extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo coverage: none - name: Install Composer dependencies run: composer install --prefer-dist --no-interaction --no-progress - name: Check for security vulnerabilities run: composer audit - name: NPM Security Audit run: npm audit --audit-level=moderate continue-on-error: true