-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAP-1798 Move security jobs from circleci to github actions
- Loading branch information
1 parent
37292ff
commit bf4d658
Showing
5 changed files
with
49 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Security OWASP dependency check | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "19 6 * * MON-FRI" # Every weekday | ||
jobs: | ||
security-kotlin-owasp-check: | ||
name: Kotlin security OWASP dependency check | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_owasp.yml@v1 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: inherit |
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,12 @@ | ||
name: Security trivy dependency check | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "19 6 * * MON-FRI" # Every weekday | ||
jobs: | ||
security-kotlin-trivy-check: | ||
name: Project security trivy dependency check | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_trivy.yml@v1 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: inherit |
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,12 @@ | ||
name: Security veracode pipeline scan | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "34 6 * * 1" # Every Monday | ||
jobs: | ||
security-veracode-pipeline-scan: | ||
name: Project security veracode pipeline scan | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_veracode_pipeline_scan.yml@v1 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: inherit |
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,12 @@ | ||
name: Security veracode policy scan | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "19 6 * * MON-FRI" # Every weekday | ||
jobs: | ||
security-veracode-policy-check: | ||
name: Project security veracode policy scan | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_veracode_policy_scan.yml@v1 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: inherit |