Skip to content

Holiday things

Holiday things #1809

Workflow file for this run

---
name: "Semgrep checks"
"on":
pull_request:
push:
jobs:
semgrep:
name: "Run Semgrep"
runs-on: ubuntu-latest
container:
# A Docker image with Semgrep installed. Do not change this.
image: returntocorp/semgrep
# Skip any PR created by dependabot to avoid permission issues:
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v2
with:
just-version: 1.5.0 # optional semver specification, otherwise latest
- name: Run semgrep
run: |
./semgrep.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure()
# always run even if the previous step fails
with:
check_name: Semgrep Checks
report_paths: 'results.xml'