cloudflare/cloudflare-typescript

Public

mirrored fromhttps://github.com/cloudflare/cloudflare-typescriptAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v4.3.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/workflows/semgrep.yml

19lines · modecode

1on:
2 workflow_dispatch: {}
3 schedule:
4 - cron: '0 4 * * *'
5name: Semgrep config
6jobs:
7 semgrep:
8 name: semgrep/ci
9 runs-on: ubuntu-latest
10 env:
11 SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
12 SEMGREP_URL: https://cloudflare.semgrep.dev
13 SEMGREP_APP_URL: https://cloudflare.semgrep.dev
14 SEMGREP_VERSION_CHECK_URL: https://cloudflare.semgrep.dev/api/check-version
15 container:
16 image: semgrep/semgrep
17 steps:
18 - uses: actions/checkout@v4
19 - run: semgrep ci
20