Self-hosted runners need environment parity work (ARM64, root user, SDK tools). Keep self-hosted for future local-llm integration tasks. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
665 B
YAML
30 lines
665 B
YAML
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push
|
|
name: "Code Scanning: Push"
|
|
|
|
on:
|
|
push:
|
|
branches: ["dev"]
|
|
|
|
jobs:
|
|
CodeQL:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
security-events: write
|
|
actions: read
|
|
contents: read
|
|
|
|
steps:
|
|
- name: "Checkout Repository"
|
|
uses: actions/checkout@v6
|
|
|
|
- name: "Initialize CodeQL"
|
|
uses: github/codeql-action/init@v4
|
|
with:
|
|
languages: go,javascript,typescript
|
|
|
|
- name: "Autobuild"
|
|
uses: github/codeql-action/autobuild@v4
|
|
|
|
- name: "Perform CodeQL Analysis"
|
|
uses: github/codeql-action/analyze@v4
|