Skip to content

PHPC-2444: Remove support for string arguments in UTCDateTime constructor #334

PHPC-2444: Remove support for string arguments in UTCDateTime constructor

PHPC-2444: Remove support for string arguments in UTCDateTime constructor #334

Workflow file for this run

name: "Static Analysis"
on:
merge_group:
pull_request:
branches:
- "v*.*"
- "feature/*"
push:
branches:
- "v*.*"
- "feature/*"
workflow_call:
inputs:
ref:
description: "The git ref to check"
type: string
required: true
jobs:
semgrep:
name: "Semgrep"
runs-on: "ubuntu-latest"
container:
image: semgrep/semgrep
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }}
submodules: true
- name: "Scan"
run: semgrep scan --sarif-output=semgrep.sarif
- name: "Upload SARIF report"
uses: "github/codeql-action/upload-sarif@v3"
with:
sarif_file: semgrep.sarif