Merge pull request #383 from VictorAvelar/dependabot/github_actions/m… #676
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: "CodeQL" | |
on: | |
push: | |
branches: [master] | |
paths-ignore: | |
- "**.md" | |
- "*.yml" | |
- "Makefile" | |
- "docs/*.md" | |
- ".gitignore" | |
- "LICENSE" | |
- ".github/*.yml" | |
- ".github/ISSUE_TEMPLATE/*.md" | |
- ".github/*.md" | |
- ".github/workflows/main.yml" | |
- ".github/workflows/release.yml" | |
- ".devcontainers/**" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "*.yml" | |
- "Makefile" | |
- "docs/*.md" | |
- ".gitignore" | |
- "LICENSE" | |
- ".github/*.yml" | |
- ".github/ISSUE_TEMPLATE/*.md" | |
- ".github/*.md" | |
- ".github/workflows/main.yml" | |
- ".github/workflows/release.yml" | |
- ".devcontainers/**" | |
# The branches below must be a subset of the branches above | |
branches: [master] | |
schedule: | |
- cron: "21 11 * * 4" | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["go"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@81644f35ff20aa6b0e7b936f0e8716419ba7d295 | |
with: | |
languages: 'go' | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@81644f35ff20aa6b0e7b936f0e8716419ba7d295 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@81644f35ff20aa6b0e7b936f0e8716419ba7d295 |