mirror of
https://github.com/tj-actions/changed-files
synced 2025-06-29 16:22:56 +02:00
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.28.18 to 3.28.19.
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](ff0a06e83c...fca7ace96b
)
---
updated-dependencies:
- dependency-name: github/codeql-action
dependency-version: 3.28.19
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
56 lines
2.1 KiB
YAML
56 lines
2.1 KiB
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: [ main ]
|
|
pull_request:
|
|
# The branches below must be a subset of the branches above
|
|
branches: [ main ]
|
|
schedule:
|
|
- cron: '15 16 * * 2'
|
|
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
|
|
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
|
|
- name: Run Codacy Analysis CLI
|
|
continue-on-error: true
|
|
uses: codacy/codacy-analysis-cli-action@97bf5df3c09e75f5bcd72695998f96ebd701846e # v4.4.5
|
|
with:
|
|
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
|
|
# You can also omit the token and run the tools that support default configurations
|
|
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
|
|
verbose: true
|
|
output: results.sarif
|
|
format: sarif
|
|
# Adjust severity of non-security issues
|
|
gh-code-scanning-compat: true
|
|
# Force 0 exit code to allow SARIF file generation
|
|
# This will hand over control about PR rejection to the GitHub side
|
|
max-allowed-issues: 2147483647
|
|
|
|
# Upload the SARIF file generated in the previous step
|
|
- name: Upload SARIF results file
|
|
continue-on-error: true
|
|
uses: github/codeql-action/upload-sarif@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
|
|
with:
|
|
sarif_file: results.sarif
|