Skip to content

Commit 7dafb68

Browse files
hyperpolymathclaude
andcommitted
fix(ci): point CodeQL at actions so SAST runs on every commit
Repo is Ada/Scheme/Shell — none are CodeQL-analysable. The matrix was `javascript-typescript`, so the analyze job saw no source and recorded zero results, and OSSF Scorecard's SAST check reported "0 commits checked" (alert #72). `language: actions` scans the workflow YAML every commit touches, so SAST now produces results on every push. Refs hyperpolymath/hypatia#260 Refs #40 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e4b5758 commit 7dafb68

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/codeql.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
include:
24-
- language: javascript-typescript
24+
# This repo is Ada/Scheme/Shell — languages CodeQL cannot analyze.
25+
# Pointing CodeQL at `javascript-typescript` made the analyze job
26+
# see no source and record zero results, so OSSF Scorecard's SAST
27+
# check reported "0 commits checked" (alert #72). `actions` scans
28+
# the workflow YAML, which every commit touches, so SAST now
29+
# produces results on every push. See hyperpolymath/hypatia#260.
30+
- language: actions
2531
build-mode: none
2632

2733
steps:

0 commit comments

Comments
 (0)