Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
f2b7f78d
Unverified
Commit
f2b7f78d
authored
1 year ago
by
Alexander Solovyov
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
add Snyk workflow (#36349)
Resolves #35677
parent
f8ec8b30
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/scripts/write-poms.sh
+15
-0
15 additions, 0 deletions
.github/scripts/write-poms.sh
.github/workflows/snyk.yml
+38
-0
38 additions, 0 deletions
.github/workflows/snyk.yml
with
53 additions
and
0 deletions
.github/scripts/write-poms.sh
0 → 100755
+
15
−
0
View file @
f2b7f78d
#!/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
This diff is collapsed.
Click to expand it.
.github/workflows/snyk.yml
0 → 100644
+
38
−
0
View file @
f2b7f78d
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment