Merge pull request #2692 from carpentries/dependabot/pip/cryptography… #2027
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: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: [ main, develop ] | |
schedule: | |
- cron: '0 2 * * 1' | |
jobs: | |
CodeQL-Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v1 | |
# Override language selection by uncommenting this and choosing your languages | |
with: | |
languages: javascript, python | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v1 |