I was running this with the changes made in PR #24 , however when testing on C/C++/Java code, the build-matrix wasn't finding that the code was there.
The issue seemed to be in lines 119 and 135 in https://github.com/advanced-security/cbom-action/blob/main/build-matrix/action.yml - by changing
select(. | IN("Python")) as $language |
to
select(. | IN("Python", "Java", "C", "C++")) as $language |
it proceeds to work. This probably isn't the best solution, hence I'm not making a PR, but it's something that should probably be looked into, and ideally for C# too (though I'm not testing that for our purposes).
Cheers! M.
I was running this with the changes made in PR #24 , however when testing on C/C++/Java code, the
build-matrixwasn't finding that the code was there.The issue seemed to be in lines 119 and 135 in https://github.com/advanced-security/cbom-action/blob/main/build-matrix/action.yml - by changing
to
it proceeds to work. This probably isn't the best solution, hence I'm not making a PR, but it's something that should probably be looked into, and ideally for C# too (though I'm not testing that for our purposes).
Cheers! M.