Skip to content

Commit ed3ca67

Browse files
committed
Update packages. Remove postbuild tests for windows since blint has stopped installing.
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent 1b892c5 commit ed3ca67

File tree

10 files changed

+136
-133
lines changed

10 files changed

+136
-133
lines changed

.github/workflows/repotests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ jobs:
880880
shell: bash
881881
- name: post-build lifecycle tests
882882
run: |
883-
pip install blint
883+
python3 -m pip install blint
884884
mkdir -p bintests
885885
cd bintests
886886
curl -LO https://github.com/owasp-dep-scan/dosai/releases/download/v0.1.1/Dosai.exe
@@ -899,6 +899,7 @@ jobs:
899899
cd ..
900900
bin/cdxgen.js -p -t go --lifecycle post-build -o bomresults/bom-go-binary.json gobintests
901901
shell: bash
902+
if: matrix.os != 'windows-latest'
902903
- name: repotests 1.7
903904
run: |
904905
bin/cdxgen.js -r -t java repotests/shiftleft-java-example -o bomresults/1.7-bom-java.json --generate-key-and-sign --tlp-classification AMBER --spec-version 1.7

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@
8686
},
8787
"files": {
8888
"maxSize": 5242880,
89-
"includes": ["**", "!contrib/**", "!data/**", "!test/**", "!types/**"]
89+
"includes": ["**", "!contrib", "!data", "!test", "!types"]
9090
}
9191
}

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
"@appthreat/atom": "npm:@appthreat/[email protected]",
6464
"@appthreat/cdx-proto": "npm:@appthreat/[email protected]",
6565
"@bufbuild/protobuf": "npm:@bufbuild/[email protected]",
66-
"@babel/parser": "npm:@babel/parser@^7.28.0",
67-
"@babel/traverse": "npm:@babel/traverse@^7.28.0",
66+
"@babel/parser": "npm:@babel/parser@^7.28.3",
67+
"@babel/traverse": "npm:@babel/traverse@^7.28.3",
6868
"@npmcli/arborist": "npm:@npmcli/arborist@^9.1.2",
6969
"ajv": "npm:ajv@^8.16.0",
7070
"ajv-formats": "npm:ajv-formats@^3.0.1",

lib/helpers/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13021,7 +13021,7 @@ export function splitOutputByGradleProjects(rawOutput, relevantTasks) {
1302113021
let subProjectOut = "";
1302213022
const outSplitByLine = rawOutput.split("\n");
1302313023
let currentProjectName = "root";
13024-
const regexPatternForRelevantTasks = `.*:(${relevantTasks.join("|")})(?=\s|\r|$)`;
13024+
const regexPatternForRelevantTasks = `.*:(${relevantTasks.join("|")})(?=s|\r|$)`;
1302513025
const regexForRelevantTasks = new RegExp(regexPatternForRelevantTasks);
1302613026
for (const [i, line] of outSplitByLine.entries()) {
1302713027
//filter out everything before first task output

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@
8080
"*": "biome check --fix --no-errors-on-unmatched"
8181
},
8282
"dependencies": {
83-
"@babel/parser": "^7.28.0",
84-
"@babel/traverse": "^7.28.0",
83+
"@babel/parser": "^7.28.3",
84+
"@babel/traverse": "^7.28.3",
8585
"@iarna/toml": "2.2.5",
8686
"@npmcli/arborist": "^9.1.2",
8787
"ajv": "^8.17.1",

0 commit comments

Comments
 (0)