Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add prodsec/security_scans #144

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
prodsec: snyk/prodsec-orb@1.0
prodsec: snyk/prodsec-orb@1

params: &params
parameters:
Expand Down Expand Up @@ -32,6 +32,21 @@ test_matrix: &test_matrix
- '1.5.5'
- '1.7.0'
jobs:
security-scans:
resource_class: small
docker:
- image: circleci/node:lts
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- prodsec/security_scans:
mode: auto
release-branch: master
open-source-additional-arguments: --exclude=test
iac-scan: disabled

test:
<<: *params
docker:
Expand Down Expand Up @@ -84,6 +99,16 @@ workflows:
context:
- snyk-bot-slack
channel: os-team-managed-alerts
filters:
branches:
ignore:
- master

- security-scans:
name: Security Scans
context:
- open_source-managed
- nodejs-install

- test:
name: Test node=<<matrix.node_version>> jdk=<<matrix.jdk_version>> sbt=<<matrix.sbt_version>>
Expand Down