We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87ea442 commit 8445ec6Copy full SHA for 8445ec6
javascript/ql/src/experimental/semmle/javascript/Actions.qll
@@ -12,7 +12,12 @@ import javascript
12
module Actions {
13
/** A YAML node in a GitHub Actions workflow file. */
14
private class Node extends YAMLNode {
15
- Node() { this.getLocation().getFile().getRelativePath().matches(["experimental/Security/CWE-094/.github/workflows/%", ".github/workflows/%"]) }
+ Node() {
16
+ this.getLocation()
17
+ .getFile()
18
+ .getRelativePath()
19
+ .matches(["experimental/Security/CWE-094/.github/workflows/%", ".github/workflows/%"])
20
+ }
21
}
22
23
/**
0 commit comments