mirror of
https://github.com/fergalmoran/picard.git
synced 2026-01-05 16:13:59 +00:00
Prevents issues with SARIF limit on codeql, see https://github.com/github/codeql-action/issues/1488
36 lines
1023 B
YAML
36 lines
1023 B
YAML
# This workflow checks out code, performs a Codacy security scan
|
|
# and integrates the results with the
|
|
# GitHub Advanced Security code scanning feature. For more information on
|
|
# the Codacy security scan action usage and parameters, see
|
|
# https://github.com/codacy/codacy-analysis-cli-action.
|
|
# For more information on Codacy Analysis CLI in general, see
|
|
# https://github.com/codacy/codacy-analysis-cli.
|
|
|
|
name: Codacy Security Scan
|
|
|
|
on:
|
|
push:
|
|
branches: [ master, 1.*.*, 2.*.* ]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [ master ]
|
|
schedule:
|
|
- cron: '32 4 * * 0'
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
|
|
jobs:
|
|
codacy-security-scan:
|
|
name: Codacy Security Scan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Checkout the repository to the GitHub Actions runner
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
# Execute Codacy Analysis CLI
|
|
- name: Run Codacy Analysis CLI
|
|
uses: codacy/codacy-analysis-cli-action@v4
|