Conversation
Wires this repo to the org-wide reusable workflows in simple-container-com/actions: - security-scan: TruffleHog (secrets) + Syft/CycloneDX SBOM + Trivy + Grype, sticky PR comment, status gate - semgrep: SC custom ruleset + optional consumer rules / registry packs, sticky PR comment, status gate Both follow the GitHub Security Lab 'preventing pwn requests' split: scan jobs run in pull_request context (read-only token, no secrets, fork-PR safe); comment posting lives in a workflow_run-triggered job that never reads PR code. Adds .github/dependabot.yml tracking the github-actions ecosystem only (forge-action has no language-specific dependencies yet).
Signed-off-by: Dmitrii Creed <creeed22@gmail.com>
Two ERROR-severity findings from gha-script-injection-via-attacker-controlled-context (Semgrep, on this PR's first scan):
1. .github/actions/dockerless/action.yml:90 — script_version interpolated as a positional arg to acquire-scripts.sh. Pass via env (SCRIPT_VERSION) and reference as "$SCRIPT_VERSION" inside the run block.
2. .github/actions/dockerless/action.yml:139 — multiple inputs (job_id, issue_id, service_url, branch, simple_forge_api_key) interpolated as positional args, plus the simple_forge_api_key debug echo using single-quoted ${{ inputs.simple_forge_api_key }} (would break the quoting if the API key contains an apostrophe). All references replaced with the env-mapped variables already declared in the env: block. The duplicate debug echo was redundant with the API_KEY env-var debug line just below; removed it.
Signed-off-by: Dmitrii Creed <creeed22@gmail.com>
smecsia
approved these changes
May 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
simple-container-com/actions:security-scan— TruffleHog + Syft + Trivy + Grype, sticky PR comment, status gatesemgrep— SC custom ruleset + optional consumer rules / registry packs, sticky PR comment, status gate.github/dependabot.ymlfor weekly bumps (github-actions + gomod where applicable, minor+patch grouped)Trust posture
Scan jobs run on
pull_request(not_target), read-only token, no secrets — safe for fork PRs. Comment posting lives in a separateworkflow_run-triggered workflow that never reads PR code.Test plan