Merge pull request #3008 from OpSecId/pstlouis/dependabot-merger-demo #181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Code scanning - action" | |
"on": | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 19 * * 0" | |
jobs: | |
CodeQL-Build: | |
# CodeQL runs on ubuntu-latest and windows-latest | |
runs-on: ubuntu-latest | |
if: (github.event_name == 'pull_request' && github.repository == 'hyperledger/aries-cloudagent-python') || (github.event_name != 'pull_request') | |
permissions: | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: python | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |