mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 17:25:26 -04:00
93825a505c
* ci: add security scanning suite and governance
Consolidates the security CI work into one reviewable change. Adds, as
separate workflow files under .github/workflows/:
- secret-scan.yml gitleaks (pinned + checksum-verified), full history
- workflow-security.yml actionlint + zizmor, audits the workflows themselves
- dependency-review.yml PR dependency gate + advisory pip-audit
- container-scan.yml hadolint (blocking) + Trivy image scan (advisory)
- codeql.yml CodeQL for Python and JS, main + weekly
Plus .github/dependabot.yml (pip/npm/actions/docker), .github/CODEOWNERS,
and docs/security-ci.md explaining each check and the one-time settings.
All additive: no existing files are modified. Actions are pinned to commit
SHAs, tokens default-deny (permissions: {}), advisory scans never block,
and SARIF upload is gated to push so fork PRs do not fail on a read-only
token. Composes with the correctness CI in #1015.
* ci(security): isolate Trivy from the Dockerfile lint gate
Address review on #1314 (points 2 and 3).
container-scan.yml now runs only hadolint (the blocking Dockerfile lint)
and keeps the broad pull_request + push:[main] trigger so the required
check always reports and never hangs a PR.
The advisory image scan moves to container-trivy.yml, split by event:
- pull_request / workflow_dispatch: build and scan under contents:read
only, no SARIF upload. The image build runs PR-supplied Dockerfile
instructions, so this path holds no write scope.
- push to main: build, scan, and upload SARIF with security-events:write.
Only this trusted path is granted write.
This stops PR jobs from requesting security-events:write they never use,
and a paths-ignore (matching docker-publish.yml) skips the image rebuild
on docs-only changes.
docs/security-ci.md: correct the trigger description to "every pull
request and every push to main", matching the workflows and the existing
ci.yml convention.
Verified locally: zizmor --offline --min-severity=low and actionlint are
clean on the changed and new workflow files.
---------
Co-authored-by: Alexandre Teixeira <111787685+alteixeira20@users.noreply.github.com>
61 lines
2.4 KiB
YAML
61 lines
2.4 KiB
YAML
# Secret scanning
|
|
#
|
|
# Purpose: stop credentials (API keys, tokens, passwords, private keys) from
|
|
# ever living in the Git history. Odysseus deliberately keeps real secrets in
|
|
# files that are gitignored (.env, data/), but a slip in a future commit -- or a
|
|
# malicious pull request that sneaks one in -- would otherwise go unnoticed.
|
|
# This job reads the repository and the full commit history and fails if it
|
|
# finds anything that looks like a secret.
|
|
#
|
|
# It runs the official gitleaks BINARY directly (pinned to an exact version and
|
|
# verified against the project's published SHA-256 checksum) rather than the
|
|
# gitleaks GitHub Action, because the Action asks for a paid license on
|
|
# organization-owned repos. The binary is free and behaves identically.
|
|
|
|
name: Secret scan
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
# Start with zero permissions; the single job opts back in to read-only.
|
|
permissions: {}
|
|
|
|
concurrency:
|
|
group: secret-scan-${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
gitleaks:
|
|
name: gitleaks
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
# Full history so a secret committed in an earlier commit (and later
|
|
# deleted) is still caught -- deletion does not remove it from Git.
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
# Pinned version + checksum so a tampered release binary cannot run here.
|
|
# Bump VERSION/SHA256 together; the checksum comes from the matching
|
|
# gitleaks_<version>_checksums.txt on the GitHub release.
|
|
- name: Run gitleaks (pinned, checksum-verified)
|
|
env:
|
|
GITLEAKS_VERSION: 8.30.1
|
|
GITLEAKS_SHA256: 551f6fc83ea457d62a0d98237cbad105af8d557003051f41f3e7ca7b3f2470eb
|
|
run: |
|
|
set -euo pipefail
|
|
TARBALL="gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz"
|
|
curl -fsSL -o "${TARBALL}" \
|
|
"https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/${TARBALL}"
|
|
echo "${GITLEAKS_SHA256} ${TARBALL}" | sha256sum -c -
|
|
tar -xzf "${TARBALL}" gitleaks
|
|
# Scan the whole history. Findings print to the log and fail the job.
|
|
./gitleaks git --no-banner --redact --verbose .
|