Skip to content

Commit 43eefa5

Browse files
SIGINT-1532: ADO: [RCA] URL is not defined (#130)
* SIGINT-1532: ADO: [RCA] URL is not defined when running Synopsys Security Scan with proxy
1 parent dcb5a67 commit 43eefa5

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

.github/workflows/check-coverage.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
code-coverage:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121

22-
- name: Set Node.js 16.x
23-
uses: actions/setup-node@v3.4.1
22+
- name: Set Node.js 20.x
23+
uses: actions/setup-node@v4
2424
with:
25-
node-version: 16.x
25+
node-version: 20.x
2626

2727
- name: Install dependencies
2828
run: cd synopsys-task && npm ci
@@ -46,5 +46,4 @@ jobs:
4646
if [[ $coverageValue < 90 ]]; then
4747
echo "##[error]Line coverage is below 90%"
4848
exit 1
49-
fi
50-
49+
fi

.github/workflows/check-dist.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
runs-on: ubuntu-latest
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

28-
- name: Set Node.js 16.x
29-
uses: actions/setup-node@v3.4.1
28+
- name: Set Node.js 20.x
29+
uses: actions/setup-node@v4
3030
with:
31-
node-version: 16.x
31+
node-version: 20.x
3232

3333
- name: Install dependencies
3434
run: cd synopsys-task && npm ci

synopsys-task/task.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,10 @@
478478
}
479479
],
480480
"execution": {
481-
"Node": {
481+
"Node10": {
482+
"target": "dist/index.js"
483+
},
484+
"Node16": {
482485
"target": "dist/index.js"
483486
}
484487
}

0 commit comments

Comments
 (0)