ZAP Scans #37
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
name: ZAP Scans | |
on: | |
schedule: | |
- cron: '0 0 * * Mon' | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
responders-zap-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: UI | |
uses: zaproxy/action-full-scan@v0.10.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-responders.apps.silver.devops.gov.bc.ca' | |
artifact_name: 'responders_ui_zap_scan' | |
issue_title: 'responders_ui_zap_scan' | |
- name: API | |
uses: zaproxy/action-api-scan@v0.7.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-responders.apps.silver.devops.gov.bc.ca/api/swagger/v1/swagger.json' | |
artifact_name: 'responders_api_zap_scan' | |
issue_title: 'responders_api_zap_scan' | |
registrants-zap-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: UI | |
uses: zaproxy/action-full-scan@v0.10.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-evacuees.apps.silver.devops.gov.bc.ca' | |
artifact_name: 'registrants_ui_zap_scan' | |
issue_title: 'registrants_ui_zap_scan' | |
- name: API | |
uses: zaproxy/action-api-scan@v0.7.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-responders.apps.silver.devops.gov.bc.ca/api/swagger/v1/swagger.json' | |
artifact_name: 'registrants_api_zap_scan' | |
issue_title: 'registrants_api_zap_scan' | |
suppliers-zap-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: UI | |
uses: zaproxy/action-full-scan@v0.10.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-suppliers.apps.silver.devops.gov.bc.ca' | |
artifact_name: 'suppliers_ui_zap_scan' | |
issue_title: 'suppliers_ui_zap_scan' | |
- name: API | |
uses: zaproxy/action-api-scan@v0.7.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-suppliers.apps.silver.devops.gov.bc.ca/api/swagger/v1/swagger.json' | |
artifact_name: 'suppliers_api_zap_scan' | |
issue_title: 'suppliers_api_zap_scan' | |
oauth-server-zap-scan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Server | |
uses: zaproxy/action-full-scan@v0.10.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
target: 'https://dev-prj-era-oauth.apps.silver.devops.gov.bc.ca' | |
artifact_name: 'oauth_server_zap_scan' | |
issue_title: 'oauth_server_zap_scan' |