Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this GitHub action will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

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

## [0.3.1] - 2023-07-05
### Fixed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Action API Scan

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

**WARNING** this action will perform attacks on the target API.
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
uses: zaproxy/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
docker_name: 'owasp/zap2docker-stable'
docker_name: 'ghcr.io/zaproxy/zaproxy:stable'
format: openapi
target: 'https://www.zaproxy.org/'
rules_file_name: '.zap/rules.tsv'
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'OWASP ZAP API Scan'
description: 'Scans the web application with the OWASP ZAP API Scan'
name: 'ZAP API Scan'
description: 'Scans the web application with the ZAP API Scan'
branding:
icon: 'zap'
color: 'blue'
Expand All @@ -21,7 +21,7 @@ inputs:
docker_name:
description: 'The Docker file to be executed'
required: true
default: 'owasp/zap2docker-stable'
default: 'ghcr.io/zaproxy/zaproxy:stable'
cmd_options:
description: 'Additional command line options'
required: false
Expand Down