We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8be8e7 commit f716222Copy full SHA for f716222
1 file changed
ql/src/Security/CWE-829/UnpinnedActionsTag.ql
@@ -18,7 +18,7 @@ private predicate isPinnedCommit(string version) { version.regexpMatch("^[A-Fa-f
18
19
bindingset[repo]
20
private predicate isTrustedOrg(string repo) {
21
- exists(string org | org in ["actions", "github", "advanced-security", "octokit"] | repo.matches(org + "/%"))
+ exists(string org | org in ["actions", "github", "advanced-security"] | repo.matches(org + "/%"))
22
}
23
24
from UsesStep uses, string repo, string version, Workflow workflow, string name
0 commit comments