Skip to content

Commit e1b42cd

Browse files
authored
Merge pull request #65 from psiinon/auto-off
Disable the automation framework while we investigate a problem with it
2 parents 3e2e57c + de2e052 commit e1b42cd

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ All notable changes to this GitHub action will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6-
## [Unreleased]
6+
## [0.6.0] - 2021-10-08
7+
### Changed
8+
- Disabled the automation framework while we investigate a problem with it.
79

810
## [0.5.0] - 2021-09-14
911
### Added
@@ -38,7 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
3840

3941
First release to Marketplace.
4042

41-
[Unreleased]: https://github.com/zaproxy/action-baseline/compare/v0.5.0...HEAD
43+
[0.6.0]: https://github.com/zaproxy/action-baseline/compare/v0.5.0...v0.6.0
4244
[0.5.0]: https://github.com/zaproxy/action-baseline/compare/v0.4.0...v0.5.0
4345
[0.4.0]: https://github.com/zaproxy/action-baseline/compare/v0.3.0...v0.4.0
4446
[0.3.0]: https://github.com/zaproxy/action-baseline/compare/v0.2.0...v0.3.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if it identifies any alerts. Set this option to `true` if you want to fail the s
5858
```
5959
steps:
6060
- name: ZAP Scan
61-
uses: zaproxy/action-baseline@v0.5.0
61+
uses: zaproxy/action-baseline@v0.6.0
6262
with:
6363
target: 'https://www.zaproxy.org'
6464
```
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
ref: master
8080
- name: ZAP Scan
81-
uses: zaproxy/action-baseline@v0.5.0
81+
uses: zaproxy/action-baseline@v0.6.0
8282
with:
8383
token: ${{ secrets.GITHUB_TOKEN }}
8484
docker_name: 'owasp/zap2docker-stable'

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async function run() {
4242

4343
await exec.exec(`docker pull ${docker_name} -q`);
4444
let command = (`docker run --user root -v ${workspace}:/zap/wrk/:rw --network="host" ` +
45-
`-t ${docker_name} zap-baseline.py -t ${target} -J ${jsonReportName} -w ${mdReportName} -r ${htmlReportName} ${cmdOptions}`);
45+
`-t ${docker_name} zap-baseline.py --autooff -t ${target} -J ${jsonReportName} -w ${mdReportName} -r ${htmlReportName} ${cmdOptions}`);
4646

4747
if (plugins.length !== 0) {
4848
command = command + ` -c ${rulesFileLocation}`

0 commit comments

Comments
 (0)