Skip to content

---

--- #132

Workflow file for this run

name: CodeQL
on:
pull_request: ~
push:
branches:
- main
permissions: read-all
jobs:
go:
name: Go
runs-on: ubuntu-22.04
permissions:
security-events: write # To upload CodeQL results
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.6
- name: Install Go
uses: actions/setup-go@v5.0.1
with:
go-version-file: go.mod
- name: Verify action checksums
env:
JOB: ${{ github.job }}
WORKFLOW: ${{ github.workflow_ref }}
run: |
WORKFLOW=$(echo "$WORKFLOW" | cut -d '@' -f 1 | cut -d '/' -f 3-5)
go run ./cmd/ghasum verify -cache /home/runner/work/_actions -no-evict -offline "$WORKFLOW:$JOB"
- name: Initialize CodeQL
uses: github/codeql-action/init@v3.25.6
with:
languages: go
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3.25.6