f31dee885b
* Fix semgrep 0.86.5 parsing failures - semgrep https://github.com/returntocorp/semgrep/pull/4671 seems to have introduce this parsing failure within version 0.86.0 and higher - Workaround parsing failure by breaking out the if error check. * Pin semgrep version to 0.86.5 * Fix formatting issues
15 lines
346 B
YAML
15 lines
346 B
YAML
---
|
|
description: >
|
|
Ensure semgrep is installed.
|
|
steps:
|
|
- run:
|
|
working_directory: ~/
|
|
name: Setup Semgrep
|
|
command: |
|
|
apk add --no-cache python3 py3-pip make
|
|
python3 -m pip install --user semgrep==0.86.5
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
echo "$ semgrep --version"
|
|
semgrep --version
|