Skip to content

Commit

Permalink
Merge pull request #69 from thc202/update-image
Browse files Browse the repository at this point in the history
Update names and default Docker image
  • Loading branch information
psiinon authored Aug 2, 2023
2 parents eceb209 + 662b122 commit 802d530
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,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.5.1] - 2023-07-05
### Fixed
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ZAP Action Full Scan

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

The ZAP full scan action runs the ZAP spider against the specified target (by default with no time limit) followed by an
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
uses: zaproxy/action-full-scan@v0.5.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
docker_name: 'owasp/zap2docker-stable'
docker_name: 'ghcr.io/zaproxy/zaproxy:stable'
target: 'https://www.zaproxy.org/'
rules_file_name: '.zap/rules.tsv'
cmd_options: '-a'
Expand All @@ -99,8 +99,6 @@ ZAP is internationalised and alert information is available in many languages.

You can change the language used by this action by changing the locale via the `cmd_options` e.g.: `-z "-config view.locale=fr_FR"`

This is currently only available with the `owasp/zap2docker-weekly` or `owasp/zap2docker-live` Docker images.

See [https://github.com/zaproxy/zaproxy/tree/develop/zap/src/main/dist/lang](https://github.com/zaproxy/zaproxy/tree/develop/zap/src/main/dist/lang) for the full set of locales currently supported.

You can help improve ZAP translations via [https://crowdin.com/project/owasp-zap](https://crowdin.com/project/owasp-zap).
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 Full Scan'
description: 'Scans the web application with the OWASP ZAP Full Scan'
name: 'ZAP Full Scan'
description: 'Scans the web application with the ZAP Full Scan'
branding:
icon: 'zap'
color: 'blue'
Expand All @@ -17,7 +17,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

0 comments on commit 802d530

Please sign in to comment.