chore(deps): bump openai/codex-action from 1.4 to 1.8 #11
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
| name: Slither | |
| on: | |
| push: | |
| pull_request: | |
| permissions: { contents: read } | |
| jobs: | |
| slither: | |
| runs-on: ubuntu-latest | |
| permissions: { contents: read } | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Slither (static analysis) | |
| run: | | |
| set -euo pipefail | |
| TOOLBOX_IMAGE="${TOOLBOX_IMAGE:-trailofbits/eth-security-toolbox@sha256:726b78aac10d4113a81ccc9db62bc2e781a2d136dcb10ad245a6bd1950c42744}" | |
| docker run --rm \ | |
| -v "$GITHUB_WORKSPACE":/repo \ | |
| -w /repo \ | |
| "$TOOLBOX_IMAGE" \ | |
| slither . \ | |
| --exclude-dependencies \ | |
| --filter-paths "test|script|out|broadcast|cache|deployments" \ | |
| --print human-summary | |
| # Enforce that we keep High/Medium findings at 0. | |
| # Slither may exit non-zero when findings are present, so generate JSON in a second pass | |
| # and evaluate severity counts ourselves. | |
| SLITHER_JSON="slither-report.json" | |
| rm -f "$SLITHER_JSON" | |
| docker run --rm \ | |
| -v "$GITHUB_WORKSPACE":/repo \ | |
| -w /repo \ | |
| "$TOOLBOX_IMAGE" \ | |
| slither . \ | |
| --exclude-dependencies \ | |
| --filter-paths "test|script|out|broadcast|cache|deployments" \ | |
| --json "$SLITHER_JSON" \ | |
| >/dev/null || true | |
| python3 - <<'PY' | |
| import json | |
| import os | |
| import sys | |
| from collections import Counter | |
| path = "slither-report.json" | |
| if not os.path.exists(path): | |
| print("slither: missing JSON output", file=sys.stderr) | |
| sys.exit(2) | |
| with open(path, "r", encoding="utf-8") as f: | |
| report = json.load(f) | |
| impacts = Counter() | |
| for detector in report.get("results", {}).get("detectors", []): | |
| impacts[detector.get("impact", "Unknown")] += 1 | |
| high = impacts.get("High", 0) | |
| medium = impacts.get("Medium", 0) | |
| print(f"slither: High={high} Medium={medium} Low={impacts.get('Low', 0)} Info={impacts.get('Informational', 0)}") | |
| if high or medium: | |
| sys.exit(1) | |
| PY | |
| rm -f "$SLITHER_JSON" |