forked from bcgov/common-hosted-form-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'bcgov:main' into master
- Loading branch information
Showing
13 changed files
with
639 additions
and
349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# Reusable workflow to run the OWASP ZAP (Open Worldwide Application Security | ||
# Project - Zed Attack Proxy) Scan against a deployed application. | ||
# | ||
name: OWASP ZAP Scan | ||
on: | ||
workflow_call: | ||
inputs: | ||
url: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
owasp-zap: | ||
name: OWASP ZAP Scan | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Run Scan | ||
uses: zaproxy/action-full-scan@v0.10.0 | ||
with: | ||
# Do not create GitHub Issues | ||
allow_issue_writing: false | ||
|
||
artifact_name: OWASP ZAP Scan | ||
|
||
# -a: include the alpha passive scan rules as well | ||
# -d: show debug messages | ||
cmd_options: "-a -d" | ||
|
||
target: ${{ inputs.url }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.