Skip to content

build(deps): bump docker/setup-buildx-action from 3 to 4 #2081

build(deps): bump docker/setup-buildx-action from 3 to 4

build(deps): bump docker/setup-buildx-action from 3 to 4 #2081

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@v6
- uses: extractions/setup-just@v3
- name: Run semgrep
run: |
./semgrep.sh
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
if: success() || failure()
# always run even if the previous step fails
with:
check_name: Semgrep Checks
report_paths: "results.xml"