Files
codeql/actions/ql/lib
Chris Smowton 338d3834c4 Actions: Make Env non-abstract
`class Env` was previously abstract with no concrete descendants, so user queries like `any(Env e | ...)` would never produce results.

In the JS library the corresponding class derived from `YamlNode` and has concrete descendants representing workflow-, job- and step-level `env` nodes. However these are dubiously useful since you can always just use `any(Step s).getEnv()` to achieve the same result. Since `EnvImpl` already fully characterises an `env` node, I simply make the class concrete.
2025-06-05 10:21:24 +01:00
..
2025-06-05 10:21:24 +01:00
2025-05-14 17:28:54 +01:00
2024-12-18 16:11:54 -05:00
2024-12-18 14:42:13 -05:00