Skip to content

Commit 472d602

Browse files
committed
Removing unused variable
1 parent dab6b7f commit 472d602

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3785,7 +3785,7 @@ async function run() {
37853785
} catch (err) {
37863786
core.setFailed('The ZAP Baseline scan has failed, starting to analyze the alerts. err: ' + err.toString());
37873787
}
3788-
await processReport(token, workspace, plugins, currentRunnerID, include_urls);
3788+
await processReport(token, workspace, plugins, currentRunnerID);
37893789
} catch (error) {
37903790
core.setFailed(error.message);
37913791
}

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async function run() {
5656
} catch (err) {
5757
core.setFailed('The ZAP Baseline scan has failed, starting to analyze the alerts. err: ' + err.toString());
5858
}
59-
await processReport(token, workspace, plugins, currentRunnerID, include_urls);
59+
await processReport(token, workspace, plugins, currentRunnerID);
6060
} catch (error) {
6161
core.setFailed(error.message);
6262
}

0 commit comments

Comments
 (0)