-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move security jobs from circleci to github actions (#243)
- Loading branch information
1 parent
13c6147
commit abcc65f
Showing
6 changed files
with
58 additions
and
7 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/[email protected] # WORKFLOW_VERSION | ||
with: | ||
channel_id: C05J915DX0Q | ||
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/[email protected] # WORKFLOW_VERSION | ||
with: | ||
channel_id: C05J915DX0Q | ||
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: "19 6 * * MON-FRI" # Every weekday | ||
jobs: | ||
security-veracode-pipeline-scan: | ||
name: Project security veracode pipeline scan | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/[email protected] # WORKFLOW_VERSION | ||
with: | ||
channel_id: C05J915DX0Q | ||
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: "34 6 * * 1" # Every Monday | ||
jobs: | ||
security-veracode-policy-check: | ||
name: Project security veracode policy scan | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/[email protected] # WORKFLOW_VERSION | ||
with: | ||
channel_id: C05J915DX0Q | ||
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