Skip to content
Snippets Groups Projects
Unverified Commit f2b7f78d authored by Alexander Solovyov's avatar Alexander Solovyov Committed by GitHub
Browse files

add Snyk workflow (#36349)

Resolves #35677
parent f8ec8b30
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
set -euo pipefail
function pom() {
path=$1
echo "Writing ${path}/pom.xml"
(cd "$path" && clojure -X:deps mvn-pom)
}
pom .
for k in $(ls modules/drivers/); do
test -d "modules/drivers/$k" && pom "modules/drivers/$k"
done
name: "Snyk"
on:
push:
branches:
- 'master'
- 'release-**'
paths:
- '**/deps.edn'
- '**/package.json'
- '.github/workflows/snyk.yml'
- '.github/scripts/write-poms.xml'
schedule:
- cron: '0 5 * * *'
jobs:
monitor:
name: Generate Snyk report
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Prepare back-end environment
uses: ./.github/actions/prepare-backend
with:
m2-cache-key: 'snyk'
- uses: snyk/actions/setup@0.4.0
- name: Generate all pom.xml
run: .github/scripts/write-poms.sh
- name: Run snyk
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
continue-on-error: true
run: snyk test --all-projects --sarif-file-output=snyk.sarif
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: snyk.sarif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment