Skip to content

Merge pull request #176 from wimpyprogrammer/dependabot/github_action… #495

Merge pull request #176 from wimpyprogrammer/dependabot/github_action…

Merge pull request #176 from wimpyprogrammer/dependabot/github_action… #495

Workflow file for this run

name: Security Scan
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
schedule:
# 10:17 on Fridays
- cron: '17 10 * * 5'
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['javascript']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3