mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-03 01:38:24 -04:00
fd30b97a85
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21 lines
563 B
YAML
21 lines
563 B
YAML
name: Semgrep
|
|
on: [pull_request]
|
|
jobs:
|
|
semgrep:
|
|
name: Scan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: returntocorp/semgrep-action@v1
|
|
env: # Optional environment variable for inline PR comments (beta)
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
config: |
|
|
p/golang
|
|
p/r2c-ci
|
|
p/r2c-security-audit
|
|
p/insecure-transport
|
|
p/secrets
|
|
publishToken: ${{ secrets.SEMGREP_APP_TOKEN }}
|
|
publishDeployment: 241
|