-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
b1f220c
commit 856db88
Showing
5 changed files
with
79 additions
and
59 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,13 @@ | ||
name: Security OWASP dependency check | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "23 9 * * MON-FRI" # Every weekday at 09:23 UTC | ||
jobs: | ||
security-kotlin-owasp-check: | ||
name: Kotlin security OWASP dependency check | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_owasp.yml@0.2 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: | ||
SLACK_BOT_TOKEN: ${{ secrets.HMPPS_SRE_SLACK_BOT_TOKEN }} |
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,13 @@ | ||
name: Security trivy dependency check | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "23 9 * * MON-FRI" # Every weekday at 09:23 UTC | ||
jobs: | ||
security-kotlin-trivy-check: | ||
name: Project security trivy dependency check | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_trivy.yml@0.2 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: | ||
SLACK_BOT_TOKEN: ${{ secrets.HMPPS_SRE_SLACK_BOT_TOKEN }} |
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,23 @@ | ||
name: Security veracode pipeline check | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "23 9 * * MON-FRI" # Every weekday at 09:23 UTC | ||
jobs: | ||
security-veracode-policy-check: | ||
name: Project security veracode policy scan | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_veracode_pipeline_scan.yml@0.2 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: | ||
SLACK_BOT_TOKEN: ${{ secrets.HMPPS_SRE_SLACK_BOT_TOKEN }} | ||
VERACODE_API_ID_0: ${{ secrets.HMPPS_VERACODE_API_ID_0 }} | ||
VERACODE_API_ID_1: ${{ secrets.HMPPS_VERACODE_API_ID_1 }} | ||
VERACODE_API_ID_2: ${{ secrets.HMPPS_VERACODE_API_ID_2 }} | ||
VERACODE_API_ID_3: ${{ secrets.HMPPS_VERACODE_API_ID_3 }} | ||
VERACODE_API_ID_4: ${{ secrets.HMPPS_VERACODE_API_ID_4 }} | ||
VERACODE_API_KEY_0: ${{ secrets.HMPPS_VERACODE_API_KEY_0 }} | ||
VERACODE_API_KEY_1: ${{ secrets.HMPPS_VERACODE_API_KEY_1 }} | ||
VERACODE_API_KEY_2: ${{ secrets.HMPPS_VERACODE_API_KEY_2 }} | ||
VERACODE_API_KEY_3: ${{ secrets.HMPPS_VERACODE_API_KEY_3 }} | ||
VERACODE_API_KEY_4: ${{ secrets.HMPPS_VERACODE_API_KEY_4 }} |
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,23 @@ | ||
name: Security veracode policy check | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "32 9 * * 1" # Every Monday at 09:32 UTC | ||
jobs: | ||
security-veracode-policy-check: | ||
name: Project security veracode policy scan | ||
uses: ministryofjustice/hmpps-github-actions/.github/workflows/security_veracode_policy_scan.yml@0.2 # WORKFLOW_VERSION | ||
with: | ||
channel_id: ${{ vars.SECURITY_ALERTS_SLACK_CHANNEL_ID || 'NO_SLACK' }} | ||
secrets: | ||
SLACK_BOT_TOKEN: ${{ secrets.HMPPS_SRE_SLACK_BOT_TOKEN }} | ||
VERACODE_API_ID_0: ${{ secrets.HMPPS_VERACODE_API_ID_0 }} | ||
VERACODE_API_ID_1: ${{ secrets.HMPPS_VERACODE_API_ID_1 }} | ||
VERACODE_API_ID_2: ${{ secrets.HMPPS_VERACODE_API_ID_2 }} | ||
VERACODE_API_ID_3: ${{ secrets.HMPPS_VERACODE_API_ID_3 }} | ||
VERACODE_API_ID_4: ${{ secrets.HMPPS_VERACODE_API_ID_4 }} | ||
VERACODE_API_KEY_0: ${{ secrets.HMPPS_VERACODE_API_KEY_0 }} | ||
VERACODE_API_KEY_1: ${{ secrets.HMPPS_VERACODE_API_KEY_1 }} | ||
VERACODE_API_KEY_2: ${{ secrets.HMPPS_VERACODE_API_KEY_2 }} | ||
VERACODE_API_KEY_3: ${{ secrets.HMPPS_VERACODE_API_KEY_3 }} | ||
VERACODE_API_KEY_4: ${{ secrets.HMPPS_VERACODE_API_KEY_4 }} |