Skip to content

Commit b5834de

Browse files
authored
Merge pull request #23 from thc202/update-image
Update names and default Docker image
2 parents 2bce95d + 9db1738 commit b5834de

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ All notable changes to this GitHub action will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
8+
### Changed
9+
- The default Docker image was changed to `ghcr.io/zaproxy/zaproxy:stable`.
810

911
## [0.3.1] - 2023-07-05
1012
### Fixed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Action API Scan
22

3-
A GitHub Action for running the OWASP ZAP [API scan](https://www.zaproxy.org/docs/docker/api-scan/) to perform
3+
A GitHub Action for running the ZAP [API scan](https://www.zaproxy.org/docs/docker/api-scan/) to perform
44
Dynamic Application Security Testing (DAST).
55

66
**WARNING** this action will perform attacks on the target API.
@@ -97,7 +97,7 @@ jobs:
9797
uses: zaproxy/[email protected]
9898
with:
9999
token: ${{ secrets.GITHUB_TOKEN }}
100-
docker_name: 'owasp/zap2docker-stable'
100+
docker_name: 'ghcr.io/zaproxy/zaproxy:stable'
101101
format: openapi
102102
target: 'https://www.zaproxy.org/'
103103
rules_file_name: '.zap/rules.tsv'

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
name: 'OWASP ZAP API Scan'
2-
description: 'Scans the web application with the OWASP ZAP API Scan'
1+
name: 'ZAP API Scan'
2+
description: 'Scans the web application with the ZAP API Scan'
33
branding:
44
icon: 'zap'
55
color: 'blue'
@@ -21,7 +21,7 @@ inputs:
2121
docker_name:
2222
description: 'The Docker file to be executed'
2323
required: true
24-
default: 'owasp/zap2docker-stable'
24+
default: 'ghcr.io/zaproxy/zaproxy:stable'
2525
cmd_options:
2626
description: 'Additional command line options'
2727
required: false

0 commit comments

Comments
 (0)