2022-04-01 09:40:25 -05:00
|
|
|
name: "CodeQL for PR / go"
|
|
|
|
|
|
|
|
on:
|
2022-11-04 09:20:08 -05:00
|
|
|
workflow_dispatch:
|
2022-04-01 09:40:25 -05:00
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
|
|
|
- '**/*.go'
|
|
|
|
|
2023-08-02 06:25:23 -05:00
|
|
|
permissions:
|
|
|
|
security-events: write
|
|
|
|
|
2022-04-01 09:40:25 -05:00
|
|
|
jobs:
|
|
|
|
analyze:
|
|
|
|
name: Analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-09-05 03:10:10 -05:00
|
|
|
uses: actions/checkout@v4
|
2022-04-01 09:40:25 -05:00
|
|
|
with:
|
|
|
|
# We must fetch at least the immediate parents so that if this is
|
|
|
|
# a pull request then we can checkout the head.
|
|
|
|
fetch-depth: 2
|
|
|
|
|
2022-11-04 09:20:08 -05:00
|
|
|
- name: Set go version
|
2023-06-02 09:17:02 -05:00
|
|
|
uses: actions/setup-go@v4
|
2022-11-04 09:20:08 -05:00
|
|
|
with:
|
2023-09-18 03:29:50 -05:00
|
|
|
go-version: '1.20.8'
|
2022-11-04 09:20:08 -05:00
|
|
|
|
2022-04-01 09:40:25 -05:00
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
2022-06-13 05:29:42 -05:00
|
|
|
uses: github/codeql-action/init@v2
|
2022-04-01 09:40:25 -05:00
|
|
|
with:
|
|
|
|
languages: "go"
|
|
|
|
|
2022-11-04 09:20:08 -05:00
|
|
|
- name: Build go files
|
|
|
|
run: |
|
|
|
|
go mod verify
|
|
|
|
make build-go
|
|
|
|
|
2022-04-01 09:40:25 -05:00
|
|
|
- name: Perform CodeQL Analysis
|
2022-06-13 05:29:42 -05:00
|
|
|
uses: github/codeql-action/analyze@v2
|