Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/daily-vulnhunter-scan.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/daily-vulnhunter-scan.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
HITS="$RUNNER_TEMP/vulnhunter-hits.tsv"
: > "$HITS"
add_hits() {
(cd "$REPO_ROOT" && grep -rlE "$2" . 2>/dev/null || true) \
(cd "$REPO_ROOT" || exit 0; grep -rlE "$2" . 2>/dev/null || true) \
| sed 's|^\./||' \
| awk -v w="$1" '{print w"\t"$0}' >> "$HITS"
}
Expand Down
13 changes: 13 additions & 0 deletions .poutine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,16 @@ rulesConfig:
pr_runs_on_self_hosted:
allowed_runners:
- ubuntu-slim # GitHub's new built-in runner (not self-hosted)

# Acknowledge findings that are not relevant in this repository.
# Note: poutine has no inline `# poutine:ignore` comment mechanism; the `skip`
# section below is the only supported suppression mechanism.
skip:
# The reusable workflow_call smoke tests check out a caller-supplied ref and then
# run shell scripts staged under ${RUNNER_TEMP}/gh-aw/actions. Those scripts are
# emitted by the compiler into the lock file itself, not read from the checked-out
# (potentially untrusted) code, so they cannot be influenced by the checkout.
- rule: untrusted_checkout_exec
path:
- .github/workflows/smoke-workflow-call.lock.yml
- .github/workflows/smoke-workflow-call-with-inputs.lock.yml