Skip to content

Added missing BugCode for SECXXEVAL abbrev #164

Added missing BugCode for SECXXEVAL abbrev

Added missing BugCode for SECXXEVAL abbrev #164

Workflow file for this run

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
name: "CodeQL Analysis"
on:
push:
branches: [master]
pull_request:
branches: [master]
paths-ignore:
- 'findsecbugs-samples-deps/**/*'
- 'findsecbugs-samples-java/**/*'
- 'findsecbugs-samples-jsp/**/*'
- 'findsecbugs-samples-kotlin/**/*'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['java']
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1