The forgejo-runner on srv-102v advertises labels `incus:host,self-hosted:host`, so jobs pinned to `ubuntu-latest` matched no runner and exited in 0s. - ci.yml / security-scan.yml / trivy-fs.yml: runs-on → [self-hosted, incus] - e2e.yml / go-fuzz.yml / loadtest.yml: same migration AND gate triggers to workflow_dispatch only (push/pull_request/schedule commented out) — single self-hosted runner, heavy suites would block the queue. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
28 lines
791 B
YAML
28 lines
791 B
YAML
name: Security Scan
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
env:
|
|
GIT_SSL_NO_VERIFY: "true"
|
|
|
|
jobs:
|
|
gitleaks:
|
|
name: Secret Scanning (gitleaks)
|
|
runs-on: [self-hosted, incus]
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install gitleaks
|
|
run: |
|
|
wget -q https://github.com/gitleaks/gitleaks/releases/download/v8.21.2/gitleaks_8.21.2_linux_x64.tar.gz
|
|
tar xzf gitleaks_8.21.2_linux_x64.tar.gz
|
|
chmod +x gitleaks
|
|
|
|
- name: Run gitleaks
|
|
run: ./gitleaks detect --source . --no-banner -v --config .gitleaks.toml
|