Skip to content

Merge pull request #148 from go-git/dependabot/github_actions/actions… #378

Merge pull request #148 from go-git/dependabot/github_actions/actions…

Merge pull request #148 from go-git/dependabot/github_actions/actions… #378

Workflow file for this run

name: CodeQL
on:
push:
branches: [ "main" ]
pull_request:
schedule:
- cron: '00 5 * * 1'
permissions: {}
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go', 'actions' ]
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.29.5
with:
languages: ${{ matrix.language }}
# xref: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# xref: https://codeql.github.com/codeql-query-help/go/
queries: security-and-quality
- name: Manual Build
run: go build ./...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.29.5
with:
category: "/language:${{matrix.language}}"