Fix edge cases: Use TRY_CAST for type conversions, convert cols to datetime before stringification #296
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Semgrep | |
on: | |
pull_request: {} | |
push: | |
branches: ["master", "main"] | |
paths: | |
- .github/workflows/semgrep.yml | |
schedule: | |
- cron: '0 16 * * *' | |
jobs: | |
semgrep: | |
name: Code and Dependency Scan | |
runs-on: ubuntu-latest | |
container: | |
image: returntocorp/semgrep | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
- uses: actions/checkout@v3 | |
- run: semgrep ci | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} |