File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,9 @@ All notable changes to this GitHub action will be documented in this file.
33
44The 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
3941First 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
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ if it identifies any alerts. Set this option to `true` if you want to fail the s
5858```
5959steps:
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```
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'
Original file line number Diff line number Diff 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 } `
You can’t perform that action at this time.
0 commit comments