Adding in codeql and zap scans to workflow #32
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: Merge | |
on: | |
pull_request: | |
branches: [dev] | |
types: [closed] | |
workflow_dispatch: | |
concurrency: | |
# PR open and close use the same group, allowing only one at a time | |
group: pr-${{ github.workflow }}-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
codeql-scan: | |
name: codeql-scan | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'javascript' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | |
- name: Autobuild | |
uses: github/codeql-action/autobuild@v2 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
zap-owasp: | |
uses: bcgov/pipeline-templates/.github/workflows/owasp-scan.yaml@main | |
with: | |
ZAP_SCAN_TYPE: 'base' # Accepted values are base and full. | |
ZAP_TARGET_URL: https://vhers-virus-scan-tools-c82b4c-tools.apps.silver.devops.gov.bc.ca/ | |
ZAP_DURATION: '2' | |
ZAP_MAX_DURATION: '5' | |
ZAP_GCP_PUBLISH: false | |
# https://github.com/bcgov-nr/action-builder-ghcr | |
builds: | |
name: Builds | |
runs-on: ubuntu-22.04 | |
permissions: | |
packages: write | |
strategy: | |
matrix: | |
package: [vhers-virus-scan] | |
include: | |
- package: vhers-virus-scan | |
build_context: ./ | |
triggers: ('vhers-virus-scan/') | |
build_file: Dockerfile | |
timeout-minutes: 10 | |
steps: | |
- uses: bcgov-nr/action-builder-ghcr@v2.0.0 | |
with: | |
keep_versions: 50 | |
package: ${{ matrix.package }} | |
build_context: ${{ matrix.build_context }} | |
tag: latest | |
triggers: ${{ matrix.triggers }} | |
deploys: | |
name: Deploys Anitvirus | |
needs: [builds] | |
environment: tools | |
permissions: | |
issues: write | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
name: [vhers-virus-scan] | |
include: | |
- name: vhers-virus-scan | |
file: ./openshift.deploy.yml | |
overwrite: true | |
steps: | |
- uses: bcgov-nr/action-deployer-openshift@v2.0.0 | |
with: | |
file: ${{ matrix.file }} | |
oc_namespace: ${{ vars.OC_NAMESPACE }} | |
oc_server: ${{ vars.OC_SERVER }} | |
oc_token: ${{ secrets.OC_TOKEN }} | |
overwrite: ${{ matrix.overwrite }} | |
parameters: -p ZONE=tools | |
repository: ${{ matrix.repository }} | |
verification_path: ${{ matrix.verification_path }} |