Skip to content

Bump log from 0.4.21 to 0.4.22 (#577) #1394

Bump log from 0.4.21 to 0.4.22 (#577)

Bump log from 0.4.21 to 0.4.22 (#577) #1394

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:
# Fetch project source with GitHub Actions Checkout.
- uses: actions/checkout@v4
- name: Run semgrep
run: |
ls -lah
./semgrep.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure() # always run even if the previous step fails
with:
check_name: Semgrep Checks
report_paths: 'results.xml'